Skip to content

Commit 36fa5d8

Browse files
committed
Added seo descriptions to all pages
1 parent f308d70 commit 36fa5d8

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

pages/archive.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: job's archive
3+
description: Archive of all my little articles about mostly programming related topics.
34
---
45

56
Here you can find all my previous posts:

pages/index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: job's online place
3+
description: Job's personal website, showcasing some of my programming projects, and listing some of my little articles.
34
---
45

56
Hi, I'm Job! I'm a computer science student from the Netherlands,
@@ -28,7 +29,9 @@ Just to give you an idea on what they're about, here's the latest few posts:
2829

2930
$for(posts)$
3031

31-
- [$title$]($url$) posted on $date$
32+
- [$title$]($url$) posted on $date$.
33+
34+
_$description$_
3235

3336
$endfor$
3437

posts/2024-01-11-hm-generalisation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: To generalise or not to generalise your types?
3+
description: Let-polymorphism is an essential mechanism for the Hindley-Milner calculus, but do we want to apply let-polymorphism to all let bindings in an imperative language?
34
---
45

56
I am working on a simple object-oriented programming language

templates/default.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
<meta charset="utf-8">
55
<meta http-equiv="x-ua-compatible" content="ie=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="description" content="$description$">
78
<title>$title$</title>
8-
<link rel="stylesheet" href="/css/default.css" />
9+
<link rel="stylesheet" href="/css/default.css">
910
</head>
1011
<body>
1112
<main role="main">

0 commit comments

Comments
 (0)