updated hugo site
This commit is contained in:
@@ -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
10
content/_index.md
Normal 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 >}}
|
||||
9
content/calculus/frontcover.md
Normal file
9
content/calculus/frontcover.md
Normal 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
|
||||
+++
|
||||
@@ -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'
|
||||
|
||||
9
content/physics/frontcover.md
Normal file
9
content/physics/frontcover.md
Normal 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
|
||||
+++
|
||||
7
layouts/_shortcodes/booklist.html
Normal file
7
layouts/_shortcodes/booklist.html
Normal 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>
|
||||
Reference in New Issue
Block a user