thsf.net/src/thsf/templates/base.html

74 lines
2.4 KiB
HTML
Raw Normal View History

2023-04-05 16:14:50 +02:00
<!DOCTYPE html>
<html lang='zxx'>
<head>
<title>THSF 2023: S/Extraire</title>
2023-04-09 09:40:48 +02:00
<meta name="viewport" content="initial-scale=1.0">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
2023-04-05 16:14:50 +02:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/style.css') }}">
2023-04-08 02:45:59 +02:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/tooltip.css') }}">
2023-04-09 08:29:44 +02:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/planning.css') }}">
2023-04-05 16:14:50 +02:00
<link rel="icon"
type="image/png"
2023-04-09 09:40:48 +02:00
href="{{ url_for('static', filename='images/favicon.png') }}">
2023-04-05 16:14:50 +02:00
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
{% block headers %}
{% endblock %}
</head>
<body>
2023-04-09 08:29:44 +02:00
<div id="main_wrapper">
<div id="center_wrapper">
<div id="header_wrapper">
<div id="header">
<span class="black bold">THSF</span>
<span class="white thin">2023</span>
</div>
<div id="subheader">
<span class="white thin">Toulouse Hacker Space Factory</span>
</div>
<div id="place">
<span class="black thin">26 28 mai 2023 - </span>
<span class="white bold">CINÉMA UTOPIA BORDEROUGE</span>
</div>
</div>
{% block content %}
{% endblock %}
2023-04-09 13:45:28 +02:00
<div id="#partners">
<a href="https://www.tetalab.org/">
<img src="{{ url_for('static', filename='images/tetalab.png')}}"
alt="Tetalab"
title="Tetalab"
class="logo_partner">
</a>
<a href="https://www.tetaneutral.net/">
<img src="{{ url_for('static', filename='images/tetaneutral.png')}}"
alt="Tetaneutral"
title="Tetaneutral"
class="logo_partner">
</a>
<br>
<a href="https://clutchmag.fr/">
<img src="{{ url_for('static', filename='images/clutch.png')}}"
alt="Clutch"
title="Clutch"
class="logo_partner">
</a>
<a href="https://www.antistatik.store/">
<img src="{{ url_for('static', filename='images/antistatik.png')}}"
alt="Antistatik"
title="Antistatik"
class="logo_partner">
</a>
</div>
2023-04-09 08:29:44 +02:00
</div>
</div>
2023-04-09 02:40:25 +02:00
{% block navbar %}
2023-04-09 04:38:07 +02:00
{% include "navbar.html" %}
2023-04-09 02:42:18 +02:00
{% endblock %}
2023-04-05 16:14:50 +02:00
</body>
</html>