mirror of
https://github.com/Pagwin-Fedora/website.git
synced 2025-07-18 01:35:41 +00:00
initial commit(theme done using submodule)
This commit is contained in:
commit
7f0bfcb26a
15 changed files with 137 additions and 0 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/liquorice"]
|
||||||
|
path = themes/liquorice
|
||||||
|
url = https://github.com/eliasson/liquorice
|
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "{{ replace .Name "-" " " | title }}"
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
||||||
|
|
6
config.toml
Normal file
6
config.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
baseURL = "https://pagwin.xyz"
|
||||||
|
languageCode = "en-us"
|
||||||
|
title = "Pagwin's website"
|
||||||
|
theme = "liquorice"
|
||||||
|
[params]
|
||||||
|
author = "Pagwin"
|
5
content/_index.md
Normal file
5
content/_index.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: "Pagwin's website"
|
||||||
|
icon: "asdf.ico"
|
||||||
|
---
|
||||||
|
# testing
|
12
content/a.md
Normal file
12
content/a.md
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
title: "A"
|
||||||
|
date: 2020-09-28
|
||||||
|
---
|
||||||
|
|
||||||
|
# this is a title header
|
||||||
|
|
||||||
|
|
||||||
|
## asdfklasjdfl
|
||||||
|
|
||||||
|
|
||||||
|
asdf
|
3
content/blog/_index.md
Normal file
3
content/blog/_index.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "Blogs"
|
||||||
|
---
|
3
content/blog/b.md
Normal file
3
content/blog/b.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
---
|
||||||
|
title: "asdf"
|
||||||
|
---
|
21
layouts/_default/list.html
Normal file
21
layouts/_default/list.html
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{{ partial "head.html" . }}
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="sixteen columns">
|
||||||
|
<h1>{{.Title}}</h1>
|
||||||
|
<ul class="li-article-list">
|
||||||
|
{{ range .Pages }}
|
||||||
|
<li>
|
||||||
|
<time class="li-article-date">{{ .Date.Format "January, 2, 2006" }}</time>
|
||||||
|
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ partial "footer.html" . }}
|
||||||
|
{{ partial "tail.html" . }}
|
14
layouts/index.html
Normal file
14
layouts/index.html
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{{ partial "head.html" . }}
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="sixteen columns">
|
||||||
|
<h1>{{.Title}}</h1>
|
||||||
|
{{.Content}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ partial "footer.html" . }}
|
||||||
|
{{ partial "tail.html" . }}
|
10
public/blog/index.xml
Normal file
10
public/blog/index.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Pagwin's website</title>
|
||||||
|
<link>https://pagwin.xyz/blog/</link>
|
||||||
|
<description>Recent content on Pagwin's website</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en-us</language><atom:link href="https://pagwin.xyz/blog/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
</channel>
|
||||||
|
</rss>
|
10
public/categories/index.xml
Normal file
10
public/categories/index.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Categories on Pagwin's website</title>
|
||||||
|
<link>https://pagwin.xyz/categories/</link>
|
||||||
|
<description>Recent content in Categories on Pagwin's website</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en-us</language><atom:link href="https://pagwin.xyz/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
</channel>
|
||||||
|
</rss>
|
10
public/index.xml
Normal file
10
public/index.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Pagwin's website</title>
|
||||||
|
<link>https://pagwin.xyz/</link>
|
||||||
|
<description>Recent content on Pagwin's website</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en-us</language><atom:link href="https://pagwin.xyz/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
</channel>
|
||||||
|
</rss>
|
23
public/sitemap.xml
Normal file
23
public/sitemap.xml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://pagwin.xyz/</loc>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://pagwin.xyz/blog/</loc>
|
||||||
|
<priority>0</priority>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://pagwin.xyz/categories/</loc>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
<url>
|
||||||
|
<loc>https://pagwin.xyz/tags/</loc>
|
||||||
|
</url>
|
||||||
|
|
||||||
|
</urlset>
|
10
public/tags/index.xml
Normal file
10
public/tags/index.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Tags on Pagwin's website</title>
|
||||||
|
<link>https://pagwin.xyz/tags/</link>
|
||||||
|
<description>Recent content in Tags on Pagwin's website</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en-us</language><atom:link href="https://pagwin.xyz/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
</channel>
|
||||||
|
</rss>
|
1
themes/liquorice
Submodule
1
themes/liquorice
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 8eac8aa9859376fbfe53aa026dcf065eace44a21
|
Loading…
Reference in a new issue