a lot of stuff was done

This commit is contained in:
Pagwin 2020-09-29 19:54:28 -04:00
parent ef72228e08
commit afb770cfc6
7 changed files with 24 additions and 21 deletions

View file

@ -11,7 +11,10 @@ theme = "liquorice"
identifier = "blog"
name = "blog"
url = "/blog/"
[[menu.main]]
identifier = "github"
name = "github"
url = "https://github.com/Pagwin-Fedora"
[[comment.menu.main]]
name = "getting started"
post = "<span class='alert'>New!</span>"

View file

@ -1,4 +1,5 @@
---
title: "Pagwin's website"
description: "asdf test description"
---
Hi this is my website, not quite sure what to do with it quite yet but for now it exists

View file

@ -1,12 +0,0 @@
---
title: "A"
date: 2020-09-28
---
# this is a title header
## asdfklasjdfl
asdf

View file

@ -1,3 +0,0 @@
---
title: "asdf"
---

7
content/blog/how.md Normal file
View file

@ -0,0 +1,7 @@
---
title: "How this website was made"
description: "It's with hugo and the rest of this is probably gonna be short and boring viewer discretion is advised"
date: 2020-09-29
---
## Prelude
before we get to how I actually made this site let's discussed how I failed to make this site(repeatedly)

View file

@ -9,7 +9,8 @@
{{ range .Pages }}
<li>
<time class="li-article-date">{{ .Date.Format "January, 2, 2006" }}</time>
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
<h2><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
<p>{{ .Description }}</p>
</li>
{{ end }}
</ul>

View file

@ -10,6 +10,12 @@
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/liquorice.css" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-144-precomposed.png" sizes="144x144" />
<meta property="og:title" content="{{ .Title }}"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="{{ .Permalink }}"/>
<meta property="og:image" content="{{ .Site.BaseURL }}icon.png">
<meta property="og:description" content="{{ .Page.Description }}">
<meta name="description" content="{{ .Page.Description }}">
{{ range .AlternativeOutputFormats -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}