Compare commits
5 Commits
2cc8a2e001
...
509bd26a79
Author | SHA1 | Date |
---|---|---|
David Thurstenson | 509bd26a79 | |
David Thurstenson | ff5d43d8ad | |
David Thurstenson | 5cdd00ac54 | |
David Thurstenson | a80857147a | |
David Thurstenson | fffda30161 |
|
@ -1,2 +1,20 @@
|
||||||
public/**
|
# Ignore everything except explicitly allowed with `!`
|
||||||
deploy_id
|
/*
|
||||||
|
|
||||||
|
# Track this gitignore because duh
|
||||||
|
!.gitignore
|
||||||
|
|
||||||
|
# Track gitmodules because also duh
|
||||||
|
!.gitmodules
|
||||||
|
|
||||||
|
# Content folder where the actual ...ya know... content lives
|
||||||
|
!content/
|
||||||
|
|
||||||
|
# Deploy script
|
||||||
|
!deploy
|
||||||
|
|
||||||
|
# Themes directory
|
||||||
|
!themes/
|
||||||
|
|
||||||
|
# Static directory
|
||||||
|
!static/
|
||||||
|
|
|
@ -1,6 +1,3 @@
|
||||||
[submodule "themes/risotto"]
|
|
||||||
path = themes/risotto
|
|
||||||
url = https://github.com/joeroe/risotto.git
|
|
||||||
[submodule "static/images/logo"]
|
[submodule "static/images/logo"]
|
||||||
path = static/images/logo
|
path = static/images/logo
|
||||||
url = https://git.thurstylark.com/logo.git
|
url = gitea@git.thurstylark.com:thurstylark/logo.git
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
title: "{{ replace .Name "-" " " | title }}"
|
|
||||||
date: {{ .Date }}
|
|
||||||
draft: true
|
|
||||||
---
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
baseURL = 'https://wiki.thurstylark.com/'
|
baseURL = 'https://wiki.thurstylark.com/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = "TL Wiki"
|
title = "TL Wiki"
|
||||||
theme = "risotto"
|
theme = "tlwiki"
|
||||||
|
|
||||||
#sectionPagesMenu = "main"
|
#sectionPagesMenu = "main"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
{{ define "main" }}
|
|
||||||
{{ partial "title_and_desc.html" . }}
|
|
||||||
{{ partial "postlist.html" . }}
|
|
||||||
{{ end }}
|
|
|
@ -1,10 +0,0 @@
|
||||||
{{ define "main" }}
|
|
||||||
<header class="content__header">
|
|
||||||
<h1>{{ .Title | markdownify }}</h1>
|
|
||||||
</header>
|
|
||||||
<div class="content__body">
|
|
||||||
{{ .Content }}
|
|
||||||
</div>
|
|
||||||
<footer class="content__footer"></footer>
|
|
||||||
{{ end }}
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{{ define "main" }}
|
|
||||||
{{ partial "title_and_desc.html" . }}
|
|
||||||
{{ partial "postlist.html" . }}
|
|
||||||
{{ end }}
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
{{define "aside" }}
|
|
||||||
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
|
|
||||||
{{ if or (.Params.author) (.Params.date) }}
|
|
||||||
<p>
|
|
||||||
{{ if .Params.author }}By {{ .Params.author }}{{ if .Date }}, {{ end }}{{ end }}
|
|
||||||
{{ if .Date }}{{ .Date.Format "2006-01-02" }}{{ end }}
|
|
||||||
</p>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
|
@ -1 +0,0 @@
|
||||||
<p class="copyright">{{ .Site.Copyright }}</p>
|
|
|
@ -1,13 +0,0 @@
|
||||||
{{ range .Pages }}
|
|
||||||
{{ if not (isset .Params "hide") }}
|
|
||||||
<article class="post">
|
|
||||||
<header class="post__header">
|
|
||||||
<h2><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<section class="post__summary">
|
|
||||||
{{ .Description }}
|
|
||||||
</section>
|
|
||||||
</article>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{{ range .Sections }}
|
|
||||||
{{ if not (isset .Params "hide") }}
|
|
||||||
<article class="post">
|
|
||||||
<header class="post__header">
|
|
||||||
<h2><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<section class="post__summary">
|
|
||||||
{{ .Description }}
|
|
||||||
</section>
|
|
||||||
</article>
|
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
|
|
@ -1,4 +0,0 @@
|
||||||
<header class="content__header">
|
|
||||||
<h1>{{ .Title | markdownify }}</h1>
|
|
||||||
{{ .Content }}
|
|
||||||
</header>
|
|
|
@ -1,4 +0,0 @@
|
||||||
<header class="content__header">
|
|
||||||
<h1>{{ .Title | markdownify }}</h1>
|
|
||||||
{{ .Description }}
|
|
||||||
</header>
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 4ded705cb4165055ea41db637cc61ac134723d39
|
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 2.4 MiB |
|
@ -1,29 +0,0 @@
|
||||||
###############################################################################################
|
|
||||||
##############################################################################################
|
|
||||||
#############################################################################################
|
|
||||||
##### ####### #####
|
|
||||||
##### ####### ####### #####
|
|
||||||
##### ####### ####### #####
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### #######
|
|
||||||
####### ####### #####
|
|
||||||
####### ####### #####
|
|
||||||
####### ####################################################
|
|
||||||
####### #####################################################
|
|
||||||
####### ######################################################
|
|
|
@ -1,15 +0,0 @@
|
||||||
##################################################
|
|
||||||
#################################################
|
|
||||||
## #### ##
|
|
||||||
## #### #### ##
|
|
||||||
#### ####
|
|
||||||
#### ####
|
|
||||||
#### ####
|
|
||||||
#### ####
|
|
||||||
#### ####
|
|
||||||
#### ####
|
|
||||||
#### ####
|
|
||||||
#### ####
|
|
||||||
#### #### ##
|
|
||||||
#### ########################
|
|
||||||
#### #########################
|
|
|
@ -1,6 +0,0 @@
|
||||||
######################
|
|
||||||
# ## ## #
|
|
||||||
## ##
|
|
||||||
## ##
|
|
||||||
## ## #
|
|
||||||
## ##########
|
|
Before Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 641 KiB |
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 9ea510e1068431fec024716bfb4b3f848840683c
|