summaryrefslogtreecommitdiff
path: root/src/main/webapp/index.xhtml
blob: 90d21a33c6e7b483bccf0c7d8490430f1b727bca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="jakarta.faces.html">
	<h:head>
		<title>Welcome to Jakarta EE!</title>
	</h:head>
	<h:body>
		<div class="header">
			<h2>Blog Name</h2>
		</div>

		<div class="row">
			<div class="leftcolumn">
				<div class="card">
					<h2>TITLE HEADING</h2>
					<h5>Title description, Dec 7, 2017</h5>
					<div class="fakeimg" style="height:200px;">
						Image
					</div>
					<p>Some text..</p>
				</div>
				<div class="card">
					<h2>TITLE HEADING</h2>
					<h5>Title description, Sep 2, 2017</h5>
					<div class="fakeimg" style="height:200px;">
						Image
					</div>
					<p>Some text..</p>
				</div>
			</div>
			<div class="rightcolumn">
				<div class="card">
					<h2>About Me</h2>
					<div class="fakeimg" style="height:100px;">
						Image
					</div>
					<p>
						Some text about me in culpa qui officia deserunt mollit anim..
					</p>
				</div>
				<div class="card">
					<h3>Popular Post</h3>
					<div class="fakeimg">Image</div><br>
					<div class="fakeimg">Image</div><br>
					<div class="fakeimg">Image</div>
				</div>
				<div class="card">
					<h3>Follow Me</h3>
					<p>Some text..</p>
				</div>
			</div>
		</div>

		<div class="footer">
			<h2>Footer</h2>
		</div> 
	</h:body>
</html>