74 lines
2.4 KiB
HTML
74 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang='zxx'>
|
|
<head>
|
|
<title>THSF 2023: S/Extraire</title>
|
|
<meta name="viewport" content="initial-scale=1.0">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<link rel="stylesheet"
|
|
href="{{ url_for('static', filename='css/style.css') }}">
|
|
<link rel="stylesheet"
|
|
href="{{ url_for('static', filename='css/tooltip.css') }}">
|
|
<link rel="stylesheet"
|
|
href="{{ url_for('static', filename='css/planning.css') }}">
|
|
<link rel="icon"
|
|
type="image/png"
|
|
href="{{ url_for('static', filename='images/favicon.png') }}">
|
|
<link rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
{% block headers %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<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 %}
|
|
<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>
|
|
</div>
|
|
</div>
|
|
{% block navbar %}
|
|
{% include "navbar.html" %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|