Fri Feb 7 01:29:45 AM EST 2025

This commit is contained in:
Silas Bartha 2025-02-07 01:29:45 -05:00
parent ff07cfa1d2
commit 0514ebc1e4
3 changed files with 20 additions and 1 deletions

View File

@ -1,6 +1,8 @@
+++ +++
title = "mons (the mountain) - part i: i got sidetracked writing c for a week" title = "mons (the mountain) - part i: i got sidetracked writing c for a week"
date = 2025-02-06 date = 2025-02-06
[extra]
coverimage = "./mons.png"
+++ +++
## the valley ## the valley

View File

@ -2,8 +2,12 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"/> <meta charset="utf-8"/>
<title>silas</title>
<link rel="stylesheet" href="/style.css"/> <link rel="stylesheet" href="/style.css"/>
<title>soaos</title>
<meta property="og:url" content="{{config.base_url | safe}}/{{current_path | safe}}" />
{% block meta_content %}
<meta property="og:title" content="soaos" />
{% endblock meta_content %}
{% block rss %} {% block rss %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}"> <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
{% endblock %} {% endblock %}

View File

@ -1,5 +1,18 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block meta_content %}
{% if page.title %}
<meta property="og:title" content="soaos" />
<meta name="description" content="{{ page.title | safe }}" />
<meta property="og:description" content="{{ page.title | safe }}" />
{% else %}
<meta property="og:title" content="soaos" />
{% endif %}
{% if page.extra.coverimage %}
<meta property="og:image" content="{{ current_url | safe }}/{{ page.extra.coverimage | safe }}"/>
{% endif %}
{% endblock meta_content %}
{% block content %} {% block content %}
<a href="{{ get_url(path='@/blog/_index.md') }}"> <- back to posts</a> <a href="{{ get_url(path='@/blog/_index.md') }}"> <- back to posts</a>
<h1 class="title"> <h1 class="title">