Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/bridging-python-and-rust.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Bridging Python & Rust: A Walkthrough of using Py03"
date = 2025-05-18
description = "A practical guide to exposing Rust functions to Python using PyO3."

[taxonomies]
tags = ["rust", "python", "py03"]
Expand Down
1 change: 1 addition & 0 deletions content/project-based-learning.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Project-Based Learning: The Method That Made Rust Finally Click"
date = 2025-02-07
description = "How hands-on projects finally helped me learn Rust after years of false starts."

[taxonomies]
tags = ["rust", "learning"]
Expand Down
1 change: 1 addition & 0 deletions content/starting-a-blog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
+++
title = "Stepping Out of My Comfort Zone: A Backend Engineer's Journey into Blogging"
date = 2024-10-13
description = "Why I started blogging and my experience setting up Zola with GitHub Pages."

[taxonomies]
tags = ["blogging", "zola"]
Expand Down
Binary file added static/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
{% block meta_content %}
<meta property="og:description" content="{{ config.title }}" />
<meta property="og:title" content="{{ config.title }}" />
<meta property="og:locale" content="en-GB" />
<!-- TODO:
<meta property="og:image" content="your value" />
<meta property="og:logo" content="your value" />
Expand Down
7 changes: 6 additions & 1 deletion templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@
{% endblock %}

{% block meta_content %}
{% if current_path %}
<meta property="og:url" content="{{config.base_url}}{{current_path | safe}}" />
{% endif %}
{% if page.title %}
<meta property="og:title" content="{{page.title}} —&nbsp;{{config.title}}" />
{% else %}
<meta property="og:title" content="{{config.title}}" />
{% endif %}
{% if page.description %}
<meta name="description" content="{{ page.description | safe }}" />
<meta property="og:description" content="{{ page.description | safe }}" />
{% endif %}
{% if page.taxonomies.tags %}
<meta property="og:article:tag" content="{{page.taxonomies.tags | join(sep=',')}}" />
{% endif %}
{% endblock meta_content %}
Loading