- Created example Markdown document with basic formatting and code block. - Added configuration file for site settings including base URL and author. - Introduced index page with project overview and links to documentation. - Implemented detailed documentation for create_repo.sh, including usage, prerequisites, and response codes. - Added custom 404 error page for better user experience. - Developed HTML structure for create_repo.sh documentation with styling and layout. - Created main index page with project description and links to relevant resources. - Included robots.txt and sitemap.xml for search engine optimization. - Established CSS styles for consistent design across the site. - Set up base HTML template for consistent layout and navigation. - Created templates for index and page rendering to streamline content management.
11 lines
327 B
HTML
11 lines
327 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ page.title }} — {{ config.title }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<article class="article">
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.content | safe }}
|
|
<a class="back-link" href="{{ config.base_url }}">← Retour à l'accueil</a>
|
|
</article>
|
|
{% endblock content %}
|