diff options
Diffstat (limited to 'src/main/webapp/index.xhtml')
| -rw-r--r-- | src/main/webapp/index.xhtml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/main/webapp/index.xhtml b/src/main/webapp/index.xhtml new file mode 100644 index 0000000..90d21a3 --- /dev/null +++ b/src/main/webapp/index.xhtml @@ -0,0 +1,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> |
