Skip to content

Commit c0d05c9

Browse files
committed
v0.1.5
1 parent 1ab7a91 commit c0d05c9

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
VERSION=$(shell jq -r .version package.json)
2+
DATE=$(shell date +%F)
23

34
all: index.html
45

56
clean:
67
rm -f index.html
78

89
index.html: demo/index.md demo/template.html Makefile
9-
pandoc --toc -s --css src/reset.css --css src/index.css -Vversion=v$(VERSION) -i $< -o $@ --template=demo/template.html
10+
pandoc --toc -s --css src/reset.css --css src/index.css -Vversion=v$(VERSION) -Vdate=$(DATE) -i $< -o $@ --template=demo/template.html
1011

1112
.PHONY: all clean

demo/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: The Monospace Web
33
subtitle: A minimalist design exploration
44
author: Oskar Wickström
55
author-url: "https://wickstrom.tech"
6-
date: 2024-08-26
76
lang: en
87
toc-title: Contents
98
---

index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<meta name="generator" content="pandoc" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
77
<meta name="author" content="Oskar Wickström" />
8-
<meta name="dcterms.date" content="2024-08-26" />
98
<title>The Monospace Web</title>
109
<link rel="stylesheet" href="src/reset.css" />
1110
<link rel="stylesheet" href="src/index.css" />
@@ -18,11 +17,11 @@ <h1 class="title">The Monospace Web</h1>
1817
<span class="subtitle">A minimalist design exploration</span>
1918
</td>
2019
<th>Version</th>
21-
<td class="width-min">v0.1.3</td>
20+
<td class="width-min">v0.1.5</td>
2221
</tr>
2322
<tr>
2423
<th>Updated</th>
25-
<td class="width-min"><time style="white-space: pre;">2024-08-26</time></td>
24+
<td class="width-min"><time style="white-space: pre;">2025-01-25</time></td>
2625
</tr>
2726
<tr>
2827
<th class="width-min">Author</th>

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@owickstrom/the-monospace-web",
3-
"version": "0.1.3",
3+
"version": "0.1.5",
44
"description": " A minimalist design exploration",
55
"main": "src/index.css",
66
"scripts": {
@@ -21,8 +21,9 @@
2121
"homepage": "https://github.com/owickstrom/the-monospace-web#readme",
2222

2323
"files": [
24-
"index.css",
25-
"index.js",
24+
"src/index.css",
25+
"src/reset.css",
26+
"src/index.js",
2627
"LICENSE",
2728
"README.md"
2829
]

0 commit comments

Comments
 (0)