mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 11:32:39 +02:00
This commit adds a new link to https://til.notmyidea.org in the navigation and corrects the check for selected page for articles.
35 lines
No EOL
1.2 KiB
HTML
35 lines
No EOL
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>{% block title %}{{ SITENAME }}{%endblock%}</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ CSS_FILE }}" type="text/css" />
|
|
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}" type="application/atom+xml" rel="alternate"
|
|
title="{{ SITENAME }} ATOM Feed" />
|
|
{% if FEED_RSS %}
|
|
<link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/atom+xml" rel="alternate"
|
|
title="{{ SITENAME }} RSS Feed" />
|
|
{% endif %}
|
|
</head>
|
|
|
|
<body>
|
|
<section id="links">
|
|
<li><a class="{% if page and page.slug == 'alexis-metaireau' %}selected{% endif %}" href="{{ SITEURL }}/">
|
|
Alexis Métaireau</a></li>
|
|
<li>
|
|
<a class="{% if page_name == 'articles' %}selected{% endif %}" href="{{ SITEURL }}/articles.html"
|
|
id="site-title">Articles</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://til.notmyidea.org">Code, etc.</a>
|
|
</li>
|
|
</section>
|
|
{% include 'github.html' %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
|
|
</html> |