feat: Add fountain pens + inks page
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
parent
fb1cc4651a
commit
d286b00da6
@ -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)
|
@ -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…
Reference in new issue