This commit is contained in:
chrosey
2017-09-13 07:52:34 +02:00
parent a1f16c37f4
commit 2340b0226b
24621 changed files with 2912161 additions and 149 deletions
+4
View File
@@ -0,0 +1,4 @@
body {
background: white;
color: black;
}
+3
View File
@@ -0,0 +1,3 @@
<footer>
<p class="copyright">Copyright</p>
</footer>
+3
View File
@@ -0,0 +1,3 @@
<header>
<h1>Some title!</h1>
</header>
+13
View File
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Browsersync Server Includes Example</title>
<link rel='stylesheet' href='css/main.css'>
</head>
<body>
@include("app/header.html")
<h1>Browsersync Server Includes Example</h1>
@include("app/footer.html")
</body>
</html>