blog.notmyidea.org/mnmlist/templates/base.html
Alexis Métaireau cbba74387d Refactored and cleaned up project
It includes these major modifications:
- Updated and modified content on 'projets.md'.
- Realigned 'base.html' in mnmlist/templates for better readability.
- Configured 'pelicanconf.py' for better project execution.
- Removed old theme directory
2023-09-12 16:44:46 +02:00

32 lines
No EOL
1.1 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 == 'index' %}selected{% endif %}" href="{{ SITEURL }}/articles.html"
id="site-title">Articles</a>
</li>
</section>
{% include 'github.html' %}
{% block content %}
{% endblock %}
</body>
</html>