wip layout mobile

This commit is contained in:
Bud Parr 2017-04-10 23:48:09 -04:00
parent a10e94cd95
commit 77514eab9e
No known key found for this signature in database
GPG key ID: ACA375160539D2B3
7 changed files with 26 additions and 52 deletions

View file

@ -1,17 +0,0 @@
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
<<<<<<< Updated upstream
{{ $currentPageUrl := .URL }}
{{ $currentSection := where .Site.Pages "Section" .Section }}
<article class="center cf pv5 measure-wide-l">
<h1>
This is not the page you were looking for
</h1>
</article>
=======
404 page hee
{{ .Content }}
>>>>>>> Stashed changes
{{ end }}

View file

@ -1,10 +1,10 @@
{{ define "main" }} {{ define "main" }}
<article class="cf pa3 pa4-m pa4-l nested-copy-line-height nested-img"> <article class="cf pa3 pa4-m pa4-l nested-copy-line-height center measure-wide-l nested-img">
<h1> <h1>
{{ .Title }} {{ .Title }}
</h1> </h1>
<div class="{{ .Site.Params.copyClass }}"> <div class="nested-copy-line-height nested-links nested-img mid-gray ">
{{ .Content }} {{ .Content }}
</div> </div>
</article> </article>

View file

@ -22,7 +22,7 @@
{{ humanize .Section | upper }} {{ humanize .Section | upper }}
</h4> </h4>
<h1> <h1>
{{ .Title }} {{ .Title }}
</h1> </h1>
<div class="nested-copy-line-height nested-links nested-img mid-gray measure-wide-l"> <div class="nested-copy-line-height nested-links nested-img mid-gray measure-wide-l">
{{ .Content | markdownify }} {{ .Content | markdownify }}

View file

@ -1,6 +1,6 @@
<div class="relative flex-auto w-100 w-40-ns mr4 mb4 bg-white nested-copy-line-height"> <div class="relative flex-auto w-100 w-40-ns mr4-l mb4 bg-white nested-copy-line-height">
<div class="bg-white mb3 ph4 pv3 gray"> <div class="bg-white mb3 ph4 pv3 gray overflow-hidden">
{{ if .Date }} {{ if .Date }}
<date class="f6"> <date class="f6">
{{ .Date.Format "January 2, 2006" }} {{ .Date.Format "January 2, 2006" }}
@ -8,7 +8,7 @@
{{ end }} {{ end }}
<h1 class="f3 near-black"> <h1 class="f3 near-black">
<a href="{{ .URL }}" class="link dim"> <a href="{{ .URL }}" class="link black dim">
{{ .Title }} {{ .Title }}
</a> </a>
</h1> </h1>

View file

@ -1,10 +1,10 @@
{{ define "main" }} {{ define "main" }}
{{ $section := where .Data.Pages "Section" "article" }} {{ $section := where .Data.Pages "Section" "article" }}
<main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide lh-copy gray"> <main class="cf ph3 ph5-l pv3 pv4-l f4 tc center measure-wide-l lh-copy mid-gray">
{{ .Content }} {{ .Content }}
</main> </main>
<section class="flex-ns flex-wrap justify-between w-100 mt5 v-top"> <section class="flex-ns flex-wrap justify-between w-100 mh4-l mt5 v-top">
{{ range sort $section "Date" "desc" }} {{ range sort $section "Date" "desc" }}
{{ .Render "summary" }} {{ .Render "summary" }}
{{ end }} {{ end }}

View file

@ -1,13 +0,0 @@
<div class="relative flex-auto w-100 w-40-ns mr4 mb4 bg-white nested-copy-line-height">
<div class="bg-white mb3 ph4 pv3 gray">
{{ if .Date }}
<date class="f6">
{{ .Date.Format "January 2, 2006" }}
</date>
{{ end }}
</div>
</div>

View file

@ -1,16 +1,20 @@
<nav class="w-100 flex-ns justify-between items-center pv3" role="navigation"> <nav class="pv3 ph3" role="navigation">
<a href="/" class="f3 fw8 hover-white no-underline white-90 dib pv2 ph3"> <div class="flex-ns justify-between items-center">
{{ .Site.Title }}
</a> <a href="/" class="f3 fw8 hover-white no-underline white-90 dib">
<div> {{ .Site.Title }}
<ul> </a>
{{ range .Site.Menus.main }} {{ if .Site.Menus.main }}
<li class="list f5 f4-ns fw4 dib"> <ul class="pl0 mr3">
<a class="hover-white no-underline white-70 pv2 ph3" href="{{ .URL }}" > {{ range .Site.Menus.main }}
{{ .Name }} <li class="list f5 f4-ns fw4 dib pr3">
</a> <a class="hover-white no-underline white-70" href="{{ .URL }}" >
</li> {{ .Name }}
{{ end }} </a>
</ul> </li>
{{ end }}
</ul>
{{ end }}
</div> </div>
</nav> </nav>