mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
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
32 lines
No EOL
1.1 KiB
HTML
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> |