feat: Add fountain pens + inks page
ci/woodpecker/push/woodpecker Pipeline was successful Details

main
earnest ma 6 days ago
parent fb1cc4651a
commit d286b00da6
Signed by: earnest ma
GPG Key ID: A343F43342EB6E2A

@ -16,7 +16,7 @@ Here are some changes I've made to my website so far:
Some more things I hope to get to soon:
- [ ] Add a page for my fountain pens and inks
- [x] Add a page for my fountain pens and inks
- [ ] Add a Blogroll page
- [ ] Support photo album/ galleries. I was thinking of just embedding or linking to Google Photos albums, but it seems much nicer if it was fully integrated.
- [ ] Add a favourite music page

@ -0,0 +1,17 @@
+++
title = "Fountain Pens"
+++
*(on the way: Kaweco Collection Sport iridescent pearl (limited edition), Extra Fine/Steel)*
- TWSBI ECO clear, Extra Fine/Steel (2021-)
- LAMY AL-star bronze (special edition), Extra Fine/Steel (2020-)
- ~~LAMY Safari white, Fine/Steel~~ (2019-2021)
## Inks
*(on the way: Pilot iroshizuku 15mL asa-gao (purple/blue), shin-kai (deep sea), yama-budo (pink/purple))*
- Pilot Namiki Black
- Pilot iroshizuku kon-peki (Blue)
- LAMY T10 Black (cartridge)

@ -3,6 +3,7 @@ title = "More"
description = "Some more links to pages on my site."
+++
- [Fountain Pens](/fountainpen)
- [Recipes](/recipes)
- [Subscribe](/subscribe)
- [Support Me](/support)

@ -0,0 +1,27 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
<ul>
<li>Published on {{ .Date.Format "Jan 02, 2006" }}
{{ if .Lastmod }}{{ if not (eq .Lastmod .Date )}}
<i>(updated {{ dateFormat "2006-01-02" .Lastmod.Local }})</i>
{{ end }}{{ end }}</li>
<li>Categories: {{ range (.GetTerms "categories") }}<a href="{{ .Permalink }}">{{ .LinkTitle }}</a> {{ end }}</li>
</ul>
{{ with .Params.frontImage }}
<figure class="title-image">
<img src="{{ index . 0 }}" alt="{{ index . 1 }}" title="{{ index . 2 }}">
</figure>
{{ end }}
<content>
{{ .Content }}
</content>
<br><hr>
<div align="center">
{{ with .PrevInSection }}<a href="{{ .Permalink }}"><button>Previous post</button></a>{{ end }}
{{ with .NextInSection }}<a href="{{ .Permalink }}"><button>Next post</button></a>{{ end }}
</div>
{{ end }}
Loading…
Cancel
Save