updated hugo site

This commit is contained in:
2026-02-28 22:23:50 -06:00
parent 797892adef
commit fdfe0c9983
6 changed files with 39 additions and 6 deletions

View File

@@ -4,8 +4,6 @@ draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
layout = ''
type = 'book'
tags = 'cpp'
chapter = ''
tags = ''
chapterno = 0
+++
# This is a Note

10
content/_index.md Normal file
View File

@@ -0,0 +1,10 @@
+++
date = '2026-02-28T10:28:34-06:00'
draft = true
title = ''
+++
Welcome to the main page. Here you will find some things.
{{< booklist >}}

View File

@@ -0,0 +1,9 @@
+++
date = '2026-02-28T22:19:00-06:00'
draft = true
title = 'Calculus Notes'
layout = 'frontcover'
type = 'book'
tags = 'calculus'
chapterno = 0
+++

View File

@@ -1,7 +1,7 @@
+++
date = '2026-02-27T22:44:20-06:00'
draft = false
title = 'CPP Notes'
title = 'C++ Notes'
type = 'book'
layout = 'frontcover'
tags = 'cpp'

View File

@@ -0,0 +1,9 @@
+++
date = '2026-02-28T22:16:48-06:00'
draft = true
title = 'Physics Notes'
layout = 'frontcover'
type = 'book'
tags = 'physics'
chapterno = 0
+++

View File

@@ -0,0 +1,7 @@
{{ $books := where .Site.AllPages "Layout" "frontcover" }}
Books:
<ul>
{{ range sort $books "Params.chapterno" "asc" }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>