This commit is contained in:
Oskar Wickström
2025-01-25 14:54:53 +01:00
parent 1ab7a91565
commit c0d05c9f4d
4 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
VERSION=$(shell jq -r .version package.json)
DATE=$(shell date +%F)
all: index.html
@@ -6,6 +7,6 @@ clean:
rm -f index.html
index.html: demo/index.md demo/template.html Makefile
pandoc --toc -s --css src/reset.css --css src/index.css -Vversion=v$(VERSION) -i $< -o $@ --template=demo/template.html
pandoc --toc -s --css src/reset.css --css src/index.css -Vversion=v$(VERSION) -Vdate=$(DATE) -i $< -o $@ --template=demo/template.html
.PHONY: all clean

View File

@@ -3,7 +3,6 @@ title: The Monospace Web
subtitle: A minimalist design exploration
author: Oskar Wickström
author-url: "https://wickstrom.tech"
date: 2024-08-26
lang: en
toc-title: Contents
---

View File

@@ -5,7 +5,6 @@
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="author" content="Oskar Wickström" />
<meta name="dcterms.date" content="2024-08-26" />
<title>The Monospace Web</title>
<link rel="stylesheet" href="src/reset.css" />
<link rel="stylesheet" href="src/index.css" />
@@ -18,11 +17,11 @@
<span class="subtitle">A minimalist design exploration</span>
</td>
<th>Version</th>
<td class="width-min">v0.1.3</td>
<td class="width-min">v0.1.5</td>
</tr>
<tr>
<th>Updated</th>
<td class="width-min"><time style="white-space: pre;">2024-08-26</time></td>
<td class="width-min"><time style="white-space: pre;">2025-01-25</time></td>
</tr>
<tr>
<th class="width-min">Author</th>

View File

@@ -1,6 +1,6 @@
{
"name": "@owickstrom/the-monospace-web",
"version": "0.1.3",
"version": "0.1.5",
"description": " A minimalist design exploration",
"main": "src/index.css",
"scripts": {
@@ -21,8 +21,9 @@
"homepage": "https://github.com/owickstrom/the-monospace-web#readme",
"files": [
"index.css",
"index.js",
"src/index.css",
"src/reset.css",
"src/index.js",
"LICENSE",
"README.md"
]