31 lines
1.2 KiB
Twig
Executable file
31 lines
1.2 KiB
Twig
Executable file
<!DOCTYPE html>
|
|
<!-- sam if you see this, thanks for letting me borrow inspiration from you -->
|
|
<!-- please dont sue me sam i can take this down whenever let me know @rintyuu -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title>
|
|
<link rel="icon" href="https://cdn.glitch.global/fad537f7-74e8-440f-a58d-6e97c9b636ea/favicon.ico?v=1730685185440" type="image/x-icon" />
|
|
<link rel="stylesheet" href="{{ theme_url }}/css/custom.css">
|
|
</head>
|
|
<body>
|
|
<center>
|
|
{% if not page.is_home %}
|
|
<div class="textcontainer">
|
|
<h1><span style="color: #63ceeb">{{ meta.title }}</span></h1>
|
|
<p>{{ meta.description }}</p>
|
|
<p>{{ meta.date }} | by {{ meta.author }}</p>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="textcontainer">
|
|
<p class="padding">{{ content }}</p>
|
|
</div>
|
|
|
|
<div class="textcontainer">
|
|
<p><a href="javascript:window.history.back()">go back</a><br /><br /><a href="https://rintyuu.uk">homepage</a> / <a href="https://blog.rintyuu.uk">blogging root dir</a></p>
|
|
</div>
|
|
</center>
|
|
</body>
|
|
</html>
|