initial commit

This commit is contained in:
Roxie Gibson 2021-08-22 04:59:27 +01:00
commit 9ac2748d45
Signed by untrusted user: roxxers
GPG Key ID: 5D0140EDEE123F4D
22 changed files with 154 additions and 0 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "themes/sophie-lewis/assets/scss/bulma"]
path = themes/sophie-lewis/assets/scss/bulma
url = https://github.com/jgthms/bulma

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

9
config.toml Normal file
View File

@ -0,0 +1,9 @@
baseURL = 'http://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = "sophie-lewis"
[params]
[params.header]
name = "Sophie Lewis"
subtitle = "Writer & Philosopher"

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"Target":"css/style.css","MediaType":"text/css","Data":{}}

View File

@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2021 YOUR_NAME_HERE
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,2 @@
+++
+++

@ -0,0 +1 @@
Subproject commit e7da5a714f905d3cca5b6a63e206cc95a508408e

View File

@ -0,0 +1,33 @@
$section-padding: 1rem 0rem;
$section-padding-desktop: $section-padding;
$section-padding-large: $section-padding;
@import "./bulma/bulma.sass";
.nav-tabs.tabs {
li:first-of-type a {
justify-content: left !important;
}
li:last-of-type a {
justify-content: right !important;
}
a {
padding: 0.5rem 0
}
.is-active a {
text-decoration: underline;
font-weight: bold;
color: $tabs-link-color;
border-bottom-color: $tabs-border-bottom-color;
}
}
.is-size-0 {
font-size: 5rem;
}
.header .hero-body {
padding-left: 0px !important;
padding-top: 8em;
}

View File

View 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>

View 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 }}

View 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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 404 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 366 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 KiB

View File

@ -0,0 +1,21 @@
# theme.toml template for a Hugo theme
# See https://github.com/gohugoio/hugoThemes#themetoml for an example
name = "Sophie Lewis"
license = "MIT"
licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE"
description = ""
homepage = "http://example.com/"
tags = []
features = []
min_version = "0.41.0"
[author]
name = ""
homepage = ""
# If porting an existing theme
[original]
name = ""
homepage = ""
repo = ""