1
Fork 0

Use variables some more

This commit is contained in:
Jake Howard 2017-04-22 19:29:11 +01:00
parent bb6c5165e3
commit c258001493
4 changed files with 3 additions and 9 deletions

View file

@ -1,6 +1,6 @@
{{ partial "page_start.html" . }} {{ partial "page_start.html" . }}
<section id="banner"> <section id="banner">
<h2>Alpha</h2> <h2>{{ title .Site.Title }}</h2>
<p>Another fine responsive site template freebie by HTML5 UP.</p> <p>Another fine responsive site template freebie by HTML5 UP.</p>
</section> </section>

View file

@ -8,6 +8,6 @@
<li><a href="#" class="icon fa-google-plus"><span class="label">Google+</span></a></li> <li><a href="#" class="icon fa-google-plus"><span class="label">Google+</span></a></li>
</ul> </ul>
<ul class="copyright"> <ul class="copyright">
<li>&copy; Untitled. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li> <li>&copy; {{ title .Site.Params.author }}. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul> </ul>
</footer> </footer>

View file

@ -1,5 +1,5 @@
<header id="header" {{ if .Params.landing }}class="alt"{{ end }}> <header id="header" {{ if .Params.landing }}class="alt"{{ end }}>
<h1><a href="index.html">Alpha</a> by HTML5 UP</h1> <h1><a href="index.html">{{ title .Site.Title }}</a> by HTML5 UP</h1>
<nav id="nav"> <nav id="nav">
<ul> <ul>
<li><a href="index.html">Home</a></li> <li><a href="index.html">Home</a></li>
@ -20,7 +20,6 @@
</li> </li>
</ul> </ul>
</li> </li>
<li><a href="#" class="button">Sign Up</a></li>
</ul> </ul>
</nav> </nav>
</header> </header>

View file

@ -1,9 +1,4 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<!--
Alpha by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html> <html>
{{ partial "head.html" . }} {{ partial "head.html" . }}