premier commit
This commit is contained in:
13
templates/accomplissements.html
Normal file
13
templates/accomplissements.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>
|
||||
{{section.title}}
|
||||
</h1>
|
||||
<ul>
|
||||
{% for page in section.pages %}
|
||||
<li><a href="{{page.permalink | safe }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock content %}
|
||||
28
templates/base.html
Normal file
28
templates/base.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Hatmos</title>
|
||||
<meta name="viewport" content="device-width, initial-scale=1">
|
||||
<meta name="description" content="Site portefolio de mes objectifs de vie et mes accomplissements">
|
||||
<link rel="stylesheet" href="{{get_url(path='style.css')}}">
|
||||
<link rel="icon" type="image/png" href="{{get_url(path='favicon.png')}}">
|
||||
</head>
|
||||
<header>
|
||||
<h1 class="titre"><a href="https://www.hatmos.xyz/">Le site de Hatmos</a></h1>
|
||||
<ul>
|
||||
<li class="titre"><a href="{{ get_url(path='@/accomplissements/_index.md')}}">Accomplissements</a></li>
|
||||
<li class="titre"><a href="{{ get_url(path='@/objectifs/_index.md')}}">Objectifs</li>
|
||||
<li class="titre"><a href="{{ get_url(path='@/cv/CV.md')}}">CV</a></li>
|
||||
</ul>
|
||||
</header>
|
||||
<body>
|
||||
<section>
|
||||
{% block content %} {% endblock content %}
|
||||
<section>
|
||||
</body>
|
||||
<footer>
|
||||
<small id="footer-text">© <script>document.write(new Date().getFullYear())</script> Hatmos. All Rights Reserved.</small>
|
||||
</footer>
|
||||
</html>
|
||||
29
templates/index.html
Normal file
29
templates/index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<div>
|
||||
<h2 class="titre">Bienvenue.</h2>
|
||||
<p id="presentation">
|
||||
Voici un site pour faire le tour de mes objectifs de vie et projets personnels et professionels ainsi que mes accomplissements.
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="titre">Accomplissements</h2>
|
||||
<p>
|
||||
<ul>
|
||||
<li class="second-section-list-element"><a href="{{ get_url(path='@/accomplissements/IMEMA.md')}}">IMEMA</a></li>
|
||||
<li class="second-section-list-element"><a href="pongzilla.html">Pongzilla</a></li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<h2 class="titre">Objectifs</h2>
|
||||
<ul>
|
||||
<li class="third-section-list-element"><a href="concordvc.html">ConcordVC</a></li>
|
||||
<li class="third-section-list-element"><a href="autoslicer.html">Auto-Slicer</a></li>
|
||||
<li class="third-section-list-element"><a href="autowater.html">Auto-water</a></li>
|
||||
<li class="third-section-list-element"><a href="{{ get_url(path='@/objectifs/porsche-944.md')}}">Porsche 944 turbo</a></li>
|
||||
<li class="third-section-list-element"><a href="mobilite.html">Mobilite</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
{% endblock content %}
|
||||
13
templates/objectifs.html
Normal file
13
templates/objectifs.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>
|
||||
{{section.title}}
|
||||
</h1>
|
||||
<ul>
|
||||
{% for page in section.pages %}
|
||||
<li><a href="{{page.permalink | safe}}">{{page.title}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock content %}
|
||||
11
templates/page.html
Normal file
11
templates/page.html
Normal file
@@ -0,0 +1,11 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<h1>
|
||||
{{ page.title }}
|
||||
</h1>
|
||||
|
||||
{{ page.content | safe }}
|
||||
|
||||
{% endblock content %}
|
||||
5
templates/shortcodes/image.html
Normal file
5
templates/shortcodes/image.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<img
|
||||
src="{{ get_url(path=src) }}"
|
||||
alt="{{ alt | default(value='') }}"
|
||||
style="width: {{ width | default(value='auto') }}; height: {{ height | default(value='auto') }};"
|
||||
>
|
||||
Reference in New Issue
Block a user