forked from autonomic-cooperative/sophie-lewis-hugo
initial commit
This commit is contained in:
0
themes/sophie-lewis/layouts/404.html
Normal file
0
themes/sophie-lewis/layouts/404.html
Normal file
11
themes/sophie-lewis/layouts/_default/baseof.html
Normal file
11
themes/sophie-lewis/layouts/_default/baseof.html
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
||||
0
themes/sophie-lewis/layouts/_default/list.html
Normal file
0
themes/sophie-lewis/layouts/_default/list.html
Normal file
0
themes/sophie-lewis/layouts/_default/single.html
Normal file
0
themes/sophie-lewis/layouts/_default/single.html
Normal file
33
themes/sophie-lewis/layouts/index.html
Normal file
33
themes/sophie-lewis/layouts/index.html
Normal file
@ -0,0 +1,33 @@
|
||||
{{ define "main" }}
|
||||
<div class="columns">
|
||||
<div class="column is-3"></div>
|
||||
<div class="column is-5">
|
||||
<div class="hero header">
|
||||
<div class="hero-body">
|
||||
<p class="title is-size-0">
|
||||
{{ site.Params.header.name }}
|
||||
</p>
|
||||
<p class="subtitle is-size-4">
|
||||
{{ site.Params.header.subtitle }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<nav>
|
||||
<div class="tabs is-fullwidth nav-tabs is-italic is-size-5 is-uppercase">
|
||||
<ul>
|
||||
<li><a>About</a></li>
|
||||
<li><a>Writing</a></li>
|
||||
<li><a>Videos</a></li>
|
||||
<li class="is-aligned-right"><a>Get In Touch</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="section">
|
||||
<p>Well, the way they make shows is, they make one show. That show's called a pilot. Then they show that show to the people who make shows, and on the strength of that one show they decide if they're going to make more shows. Some pilots get picked and become television programs. Some don't, become nothing. She starred in one of the ones that became nothing. </p>
|
||||
<p>You think water moves fast? You should see ice. It moves like it has a mind. Like it knows it killed the world once and got a taste for murder. After the avalanche, it took us a week to climb out. Now, I don't know exactly when we turned on each other, but I know that seven of us survived the slide... and only five made it out. Now we took an oath, that I'm breaking now. We said we'd say it was the snow that killed the other two, but it wasn't. Nature is lethal but it doesn't hold a candle to man. </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column is-4">
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
0
themes/sophie-lewis/layouts/partials/footer.html
Normal file
0
themes/sophie-lewis/layouts/partials/footer.html
Normal file
13
themes/sophie-lewis/layouts/partials/head.html
Normal file
13
themes/sophie-lewis/layouts/partials/head.html
Normal file
@ -0,0 +1,13 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{{ $title := print .Site.Title " | " .Title }}
|
||||
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
||||
{{/* scss compiling */}}
|
||||
{{ $options := (dict "targetPath" "css/style.css" "outputStyle" "compressed") }}
|
||||
{{ $style := resources.Get "scss/main.scss" | resources.ToCSS $options }}
|
||||
{{ template "_internal/opengraph.html" . }}
|
||||
{{ template "_internal/twitter_cards.html" . }}
|
||||
<link href='{{ $style.RelPermalink }}' rel="stylesheet">
|
||||
<title>{{ $title }}</title>
|
||||
</head>
|
||||
0
themes/sophie-lewis/layouts/partials/header.html
Normal file
0
themes/sophie-lewis/layouts/partials/header.html
Normal file
Reference in New Issue
Block a user