Commit a2c8541a authored by Björn Bartels's avatar Björn Bartels 👩🏻
Browse files

update tmpl, clean-up

parent ae78f01e
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -34,13 +34,13 @@
  "license": "Apache-2.0",
  "license": "Apache-2.0",
  "babel": {
  "babel": {
    "presets": [
    "presets": [
      "es2015"
      "env"
    ]
    ]
  },
  },
  "private": false,
  "private": false,
  "dependencies": {},
  "dependencies": {},
  "devDependencies": {
  "devDependencies": {
    "babel-preset-es2015": "^6.3.13",
    "babel-preset-env": "^1.6.0",
    "babel-register": "^6.7.2",
    "babel-register": "^6.7.2",
    "browser-sync": "^2.10.0",
    "browser-sync": "^2.10.0",
    "require-dir": "^0.3.0",
    "require-dir": "^0.3.0",
+1 −1
Original line number Original line Diff line number Diff line
@@ -81,7 +81,6 @@ layout: default
			    <li>Lorem ipsum...</li>
			    <li>Lorem ipsum...</li>
			    <li>Lorem ipsum...</li>
			    <li>Lorem ipsum...</li>
			    <li>Lorem ipsum...</li>
			    <li>Lorem ipsum...</li>
			    <li>
					<ol>
					<ol>
					    <li>Lorem ipsum...</li>
					    <li>Lorem ipsum...</li>
					    <li>Lorem ipsum...</li>
					    <li>Lorem ipsum...</li>
@@ -92,6 +91,7 @@ layout: default
							</ol>
							</ol>
					    </li>
					    </li>
					</ol>
					</ol>
			    <li>
			    </li>
			    </li>
			</ol>
			</ol>
		
		
+6 −19
Original line number Original line Diff line number Diff line
<!DOCTYPE html>
<!--  <!DOCTYPE html>
<html>
<html>
	<head>
	<head>
		<title>[site-app]</title>
		<title>[site-app]</title>
@@ -15,7 +15,7 @@
		<script src="assets/js/app.js"></script>
		<script src="assets/js/app.js"></script>
	</head>
	</head>
	<body>
	<body>
		
 -->		
		<div id="wrapper" class="row column large-12">
		<div id="wrapper" class="row column large-12">
		    <div class="row">
		    <div class="row">
		    	<div class="large-12 columns">
		    	<div class="large-12 columns">
@@ -1663,20 +1663,7 @@
		    </article>
		    </article>
		    
		    
			
			
			<hr>
			
			
			<!-- Footer -->
				<footer id="footer" class="row column large-12">
					<span class="copyright">&copy; <a href="https://bjoernbartels.earth" target="_blank">[bjoernbartels.earth]</a>. 
					<span class="patterns">| <a href="/">Patterns</a>. 
					<span class="typography">| <a href="/typography.html">Typography</a>.
					<span class="foundation">| <a href="/kitchensink.html">Kitchen Sink</a>. 
					<span class="styleguide">| <a href="/styleguide.html">Styleguide</a>.  
					<span class="foundation">| <a href="/foundation.html">Demo</a>.  
				</footer>
			
		</div>
		</div>
		
		<!--
	</body>
	</body>
</html>
</html> -->
 No newline at end of file
 No newline at end of file
+31 −0
Original line number Original line Diff line number Diff line
---
layout: default
---
<header class="row">
	<div class="large-12 columns">
		<h1>[Typography - Theme]</h1>
	</div>
</header> 

<div class="row">
	<div class="large-12 columns">
	
		<div class="callout">
			<h1>H1 headline text example</h1>
			
			<h2>H2 headline text example</h2>
			
			<h3>H3 headline text example</h3>
			
			<h4>H4 headline text example</h4>
			
			<h5>H5 headline text example</h5>
			
			<h6>H6 headline text example</h6>
			
			<p>paragraph text example</p>
		
		</div>

	</div>
</div>
Loading