update readme 2024_09
This commit is contained in:
parent
8ce8d5fca2
commit
1719c5d82d
6 changed files with 56 additions and 14 deletions
39
html-templates/blogpost.html
Normal file
39
html-templates/blogpost.html
Normal file
|
@ -0,0 +1,39 @@
|
|||
<!DOCTYPE HTML>
|
||||
|
||||
<html lang="fr-FR">
|
||||
<head>
|
||||
<title>$title$</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="/style.css" type="text/css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index.html">~/</a></li>
|
||||
<li><a href="/logs/index.html">~/logs</a></li>
|
||||
<li><a href="/projects.html">~/projects</a></li>
|
||||
<li><a href="/gibone-cv.pdf">~/gibone-cv.pdf</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<article class="h-entry">
|
||||
<header>
|
||||
<h1 class="p-name">$title$</h1>
|
||||
<time class="dt-published" datetime="$date$">$date$</time>
|
||||
<a class="p-author h-card" href="https://steven.gibone.fr">s.gibone</a>
|
||||
<a class="u-url" href="/logs/$sourcefile$">permalink</a>
|
||||
</header>
|
||||
<div class="e-content">
|
||||
$body$
|
||||
</div>
|
||||
</article>
|
||||
<footer>
|
||||
<hr>
|
||||
<a href="mailto:steven@gibone.fr">steven@gibone.fr</a><br>
|
||||
<a rel=me href="https://mastodon.zaclys.com/@lonion">@lonion@mastodon.zaclys.com</a><br>
|
||||
This page is <a href="https://jeffhuang.com/designed_to_last/">designed to last</a>.
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
|
@ -19,14 +19,14 @@
|
|||
</ul>
|
||||
</nav>
|
||||
<header>
|
||||
<h1>$title$</h1>
|
||||
<time datetime="$date$">$date$</time>
|
||||
<h1 class="p-name">$title$</h1>
|
||||
</header>
|
||||
<article>$body$</article>
|
||||
$body$
|
||||
<footer>
|
||||
<hr>
|
||||
<a href="mailto:steven@gibone.fr">steven@gibone.fr</a><br>
|
||||
<a rel=me href="https://mastodon.zaclys.com/@lonion">@lonion@mastodon.zaclys.com</a><br>
|
||||
This page is <a href="https://jeffhuang.com/designed_to_last/">designed to last</a>.
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue