Skip to content

Commit f2c8a5d

Browse files
committed
new default html template
1 parent 4a58481 commit f2c8a5d

File tree

5 files changed

+94
-0
lines changed

5 files changed

+94
-0
lines changed

Config/Html/Static/about.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="description" content="">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>About</title>
8+
<link href="https://fonts.googleapis.com/css?family=Kotta+One" rel="stylesheet">
9+
<link rel="stylesheet" href="css/main.min.css">
10+
</head>
11+
<body>
12+
<div class="container">
13+
14+
<nav><a href="" onclick="history.back()">Home</a> | <a href="">About</a></nav>
15+
16+
<h1>About</h1>
17+
<p>Página <b>estática</b> de teste.</p>
18+
19+
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PL9IUbUK2bbvRFDC_cNEymkA9UE5qvJ_1Y" frameborder="0" allowfullscreen></iframe>
20+
21+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
22+
23+
<h2>Sub-título - H2</h2>
24+
25+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
26+
27+
<footer>
28+
&copy; 2017 DevBr community<br/>
29+
Content in this page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/legalcode" target="new">Creative Commons</a>.
30+
</footer>
31+
</div>
32+
</body>
33+
</html>

Config/Html/footer.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
<footer>
3+
&copy; 2017 DevBr community<br/>
4+
Content in this page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/legalcode" target="new">Creative Commons</a>.
5+
</footer>
6+
</div>
7+
<x:script/>
8+
</body>
9+
</html>

Config/Html/header.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="description" content="">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title><x:title/></title>
8+
<meta name="keywords" content="">
9+
<meta property="og:title" content="Hello World">
10+
<meta property="og:type" content="website">
11+
<meta property="og:url" content="https://github.com/devbr/website/">
12+
<meta property="og:image" content="<x:url/>img/media.png">
13+
<meta property="og:site_name" content="devbr - website">
14+
<meta property="og:description" content="Core for PHP websites">
15+
<link href="https://fonts.googleapis.com/css?family=Kotta+One" rel="stylesheet">
16+
<x:style/>
17+
</head>
18+
<body>
19+
<div class="container">
20+
<nav><a href="">Home</a> | <a href="<x:url/>about">About</a></nav>

Config/Html/home.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
<section>
3+
4+
<h1>Hello World</h1>
5+
6+
<iframe width="560" height="315" src="https://www.youtube.com/embed/videoseries?list=PL9IUbUK2bbvRFDC_cNEymkA9UE5qvJ_1Y" frameborder="0" allowfullscreen></iframe>
7+
8+
<p>Developed by <a href="https://github.com/devbr/website">https://github.com/devbr/website</a>
9+
</p>
10+
11+
</section>

Config/Html/nopage.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="description" content="">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>Error 404</title>
8+
<style>
9+
body {background: #456;}
10+
.container {width:300px; margin:20% auto; border:8px solid #A35; border-bottom-right-radius: 60px; border-top-left-radius:60px;box-shadow:0px 10px 40px #123; background:#FFF; font-family: monospace; padding:20px; text-align: center; transform: rotate(-10deg);}
11+
h1 {font-size: 7em; margin:0; padding: 0; }
12+
</style>
13+
</head>
14+
<body>
15+
<div class="container">
16+
<h1>Oops!</h1>
17+
<p>Page not found!</p>
18+
<p>Let's go back to the <a href="<x:url/>">homepage</a>?</p>
19+
</div>
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)