mirror of
https://github.com/Pagwin-Fedora/website.git
synced 2025-07-18 09:55:41 +00:00
a lot of stuff was done
This commit is contained in:
parent
ef72228e08
commit
afb770cfc6
7 changed files with 24 additions and 21 deletions
13
config.toml
13
config.toml
|
@ -7,11 +7,14 @@ theme = "liquorice"
|
||||||
author = "Pagwin"
|
author = "Pagwin"
|
||||||
|
|
||||||
[menu]
|
[menu]
|
||||||
[[menu.main]]
|
[[menu.main]]
|
||||||
identifier = "blog"
|
identifier = "blog"
|
||||||
name = "blog"
|
name = "blog"
|
||||||
url = "/blog/"
|
url = "/blog/"
|
||||||
|
[[menu.main]]
|
||||||
|
identifier = "github"
|
||||||
|
name = "github"
|
||||||
|
url = "https://github.com/Pagwin-Fedora"
|
||||||
[[comment.menu.main]]
|
[[comment.menu.main]]
|
||||||
name = "getting started"
|
name = "getting started"
|
||||||
post = "<span class='alert'>New!</span>"
|
post = "<span class='alert'>New!</span>"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
title: "Pagwin's website"
|
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
|
Hi this is my website, not quite sure what to do with it quite yet but for now it exists
|
||||||
|
|
12
content/a.md
12
content/a.md
|
@ -1,12 +0,0 @@
|
||||||
---
|
|
||||||
title: "A"
|
|
||||||
date: 2020-09-28
|
|
||||||
---
|
|
||||||
|
|
||||||
# this is a title header
|
|
||||||
|
|
||||||
|
|
||||||
## asdfklasjdfl
|
|
||||||
|
|
||||||
|
|
||||||
asdf
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
title: "asdf"
|
|
||||||
---
|
|
7
content/blog/how.md
Normal file
7
content/blog/how.md
Normal 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)
|
|
@ -9,7 +9,8 @@
|
||||||
{{ range .Pages }}
|
{{ range .Pages }}
|
||||||
<li>
|
<li>
|
||||||
<time class="li-article-date">{{ .Date.Format "January, 2, 2006" }}</time>
|
<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>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -10,6 +10,12 @@
|
||||||
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/liquorice.css" />
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/liquorice.css" />
|
||||||
<link rel="shortcut icon" href="/favicon.ico" />
|
<link rel="shortcut icon" href="/favicon.ico" />
|
||||||
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-144-precomposed.png" sizes="144x144" />
|
<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 -}}
|
{{ range .AlternativeOutputFormats -}}
|
||||||
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||||
{{ end -}}
|
{{ end -}}
|
||||||
|
|
Loading…
Reference in a new issue