-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
291179d
commit ec1dfb3
Showing
3 changed files
with
25 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
<?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:ui="http://xmlns.jcp.org/jsf/facelets" | ||
xmlns:h="http://xmlns.jcp.org/jsf/html"> | ||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns:ui="jakarta.faces.facelets" | ||
xmlns:h="jakarta.faces.html"> | ||
|
||
<h:head> | ||
<title><ui:insert name="title">MetFrag</ui:insert></title> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap" /> | ||
<h:outputStylesheet name='css/style.css' rel='stylesheet' type='text/css'/> | ||
<title><ui:insert name="title">MetFrag</ui:insert></title> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap"/> | ||
<h:outputStylesheet name="css/style.css" rel="stylesheet" type="text/css"/> | ||
</h:head> | ||
|
||
<h:body style="min-height: 100%; height:100%; margin-right: 0; margin-left: 0; margin-bottom:0; padding:0; font-size: 95%; | ||
background: #E2E2E2 url('resources/images/body-bg.png') repeat-x scroll 0 0;"> | ||
<h:panelGroup layout="block" id="container"> | ||
<div id="header" style="width: 90%; margin-left: auto; margin-right: auto; padding-top: 25px"> | ||
<ui:insert name="header" > | ||
<ui:include src="includes/header.xhtml" /> | ||
</ui:insert> | ||
</div> | ||
|
||
<div id="landingPage" style="width: 90%; margin-left: auto; margin-right: auto;"> | ||
<ui:insert name="content" > | ||
<ui:include src="includes/landingPage.xhtml" /> | ||
<h:body class="body-style"> | ||
<h:panelGroup layout="block" id="container"> | ||
<div id="header"> | ||
<ui:insert name="header"> | ||
<ui:include src="includes/header.xhtml"/> | ||
</ui:insert> | ||
</div> | ||
|
||
<div id="landingPage" class="landing-page-style"> | ||
<ui:insert name="content"> | ||
<ui:include src="includes/landingPage.xhtml"/> | ||
</ui:insert> | ||
</div> | ||
|
||
</h:panelGroup> | ||
</h:panelGroup> | ||
</h:body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -634,4 +634,9 @@ html,body { | |
|
||
.footer-title { | ||
font-weight: bold; | ||
} | ||
|
||
.landing-page-style { | ||
width: 90%; | ||
margin: 0 auto; | ||
} |