Compare commits
	
		
			No commits in common. "509bd26a79ccf2948caceb5a0d3feabafc01f401" and "2cc8a2e0014d7a2a845fa2666d4705f741303de6" have entirely different histories.
		
	
	
		
			509bd26a79
			...
			2cc8a2e001
		
	
		
							
								
								
									
										22
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						@ -1,20 +1,2 @@
 | 
			
		||||
# Ignore everything except explicitly allowed with `!`
 | 
			
		||||
/*
 | 
			
		||||
 | 
			
		||||
# 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/
 | 
			
		||||
public/**
 | 
			
		||||
deploy_id
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										5
									
								
								.gitmodules
									
									
									
									
										vendored
									
									
								
							
							
						
						@ -1,3 +1,6 @@
 | 
			
		||||
[submodule "themes/risotto"]
 | 
			
		||||
	path = themes/risotto
 | 
			
		||||
	url = https://github.com/joeroe/risotto.git
 | 
			
		||||
[submodule "static/images/logo"]
 | 
			
		||||
	path = static/images/logo
 | 
			
		||||
	url = gitea@git.thurstylark.com:thurstylark/logo.git
 | 
			
		||||
	url = https://git.thurstylark.com/logo.git
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								archetypes/default.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
---
 | 
			
		||||
title: "{{ replace .Name "-" " " | title }}"
 | 
			
		||||
date: {{ .Date }}
 | 
			
		||||
draft: true
 | 
			
		||||
---
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
baseURL = 'https://wiki.thurstylark.com/'
 | 
			
		||||
languageCode = 'en-us'
 | 
			
		||||
title = "TL Wiki"
 | 
			
		||||
theme = "tlwiki"
 | 
			
		||||
theme = "risotto"
 | 
			
		||||
 | 
			
		||||
#sectionPagesMenu = "main"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										4
									
								
								layouts/_default/list.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,4 @@
 | 
			
		||||
{{ define "main" }}
 | 
			
		||||
	{{ partial "title_and_desc.html" . }}
 | 
			
		||||
	{{ partial "postlist.html" . }}
 | 
			
		||||
{{ end }}
 | 
			
		||||
							
								
								
									
										10
									
								
								layouts/_default/single.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,10 @@
 | 
			
		||||
{{ define "main" }}
 | 
			
		||||
    <header class="content__header">
 | 
			
		||||
        <h1>{{ .Title | markdownify }}</h1>
 | 
			
		||||
    </header>
 | 
			
		||||
    <div class="content__body">
 | 
			
		||||
        {{ .Content }}
 | 
			
		||||
    </div>
 | 
			
		||||
    <footer class="content__footer"></footer>
 | 
			
		||||
{{ end }}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										5
									
								
								layouts/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,5 @@
 | 
			
		||||
{{ define "main" }}
 | 
			
		||||
    {{ partial "title_and_desc.html" . }}
 | 
			
		||||
    {{ partial "postlist.html" . }}
 | 
			
		||||
{{ end }}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										9
									
								
								layouts/partials/asside.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,9 @@
 | 
			
		||||
{{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
									
								
								layouts/partials/footer.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1 @@
 | 
			
		||||
<p class="copyright">{{ .Site.Copyright }}</p>
 | 
			
		||||
							
								
								
									
										13
									
								
								layouts/partials/postlist.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,13 @@
 | 
			
		||||
{{ 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 }}
 | 
			
		||||
							
								
								
									
										13
									
								
								layouts/partials/sectionlist.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,13 @@
 | 
			
		||||
{{ 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 }}
 | 
			
		||||
							
								
								
									
										4
									
								
								layouts/partials/title_and_content.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,4 @@
 | 
			
		||||
<header class="content__header">
 | 
			
		||||
<h1>{{ .Title | markdownify }}</h1>
 | 
			
		||||
{{ .Content }}
 | 
			
		||||
</header>
 | 
			
		||||
							
								
								
									
										4
									
								
								layouts/partials/title_and_desc.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,4 @@
 | 
			
		||||
<header class="content__header">
 | 
			
		||||
<h1>{{ .Title | markdownify }}</h1>
 | 
			
		||||
{{ .Description }}
 | 
			
		||||
</header>
 | 
			
		||||
@ -1 +0,0 @@
 | 
			
		||||
Subproject commit 4ded705cb4165055ea41db637cc61ac134723d39
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL-2-small.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 16 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL-2.ico
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL-2.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.4 MiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL-3-small.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 16 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL-3.ico
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL-3.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.4 MiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL-small.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 16 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL.ico
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 4.2 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 2.4 MiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/archive/TL.xcf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										29
									
								
								static/images/logo/tl-logo-big.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,29 @@
 | 
			
		||||
     ###############################################################################################
 | 
			
		||||
     ##############################################################################################
 | 
			
		||||
     #############################################################################################
 | 
			
		||||
     #####                                   #######                                        #####
 | 
			
		||||
     #####                                  #######  #######                               #####
 | 
			
		||||
     #####                                 #######  #######                               #####
 | 
			
		||||
                                          #######  #######
 | 
			
		||||
                                         #######  #######
 | 
			
		||||
                                        #######  #######
 | 
			
		||||
                                       #######  #######
 | 
			
		||||
                                      #######  #######
 | 
			
		||||
                                     #######  #######
 | 
			
		||||
                                    #######  #######
 | 
			
		||||
                                   #######  #######
 | 
			
		||||
                                  #######  #######
 | 
			
		||||
                                 #######  #######
 | 
			
		||||
                                #######  #######
 | 
			
		||||
                               #######  #######
 | 
			
		||||
                              #######  #######
 | 
			
		||||
                             #######  #######
 | 
			
		||||
                            #######  #######
 | 
			
		||||
                           #######  #######
 | 
			
		||||
                          #######  #######
 | 
			
		||||
                         #######  #######
 | 
			
		||||
                        #######  #######                                      #####
 | 
			
		||||
                       #######  #######                                       #####
 | 
			
		||||
                      #######  ####################################################
 | 
			
		||||
                     #######  #####################################################
 | 
			
		||||
                    #######  ######################################################
 | 
			
		||||
							
								
								
									
										15
									
								
								static/images/logo/tl-logo-med.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,15 @@
 | 
			
		||||
   ##################################################
 | 
			
		||||
   #################################################
 | 
			
		||||
   ##                  ####                      ##
 | 
			
		||||
   ##                 ####  ####                ##
 | 
			
		||||
                     ####  ####
 | 
			
		||||
                    ####  ####
 | 
			
		||||
                   ####  ####
 | 
			
		||||
                  ####  ####
 | 
			
		||||
                 ####  ####
 | 
			
		||||
                ####  ####
 | 
			
		||||
               ####  ####
 | 
			
		||||
              ####  ####
 | 
			
		||||
             ####  ####                 ##
 | 
			
		||||
            ####  ########################
 | 
			
		||||
           ####  #########################
 | 
			
		||||
							
								
								
									
										6
									
								
								static/images/logo/tl-logo-small.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
   ######################
 | 
			
		||||
   #       ## ##       #
 | 
			
		||||
          ## ##
 | 
			
		||||
         ## ##
 | 
			
		||||
        ## ##      #
 | 
			
		||||
       ## ##########
 | 
			
		||||
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/tl-logo-thicc.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 1.6 MiB  | 
							
								
								
									
										
											BIN
										
									
								
								static/images/logo/tl-logo.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 641 KiB  | 
@ -1 +0,0 @@
 | 
			
		||||
Subproject commit 9ea510e1068431fec024716bfb4b3f848840683c
 | 
			
		||||