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

108 lines
4.0 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-16 09:38:01 +02:00
<script src="{{ url_for('static', filename='scripts/thsf23.js') }}"></script>
2023-04-10 01:32:35 +02:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/colors.css') }}">
2023-04-11 12:23:27 +02:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/wemakeporn.css') }}">
2023-04-10 01:32:35 +02:00
<link rel="stylesheet"
href="{{ url_for('static', filename='css/wrappers.css') }}">
<link rel="stylesheet"
href="{{ url_for('static', filename='css/custom.css') }}">
<link rel="stylesheet"
href="{{ url_for('static', filename='css/elements.css') }}">
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"
2023-04-16 09:38:01 +02:00
href="{{ url_for('static', filename='css/slot.css') }}">
2023-04-05 16:14:50 +02:00
<link rel="icon"
2023-04-19 11:56:00 +02:00
type="image/svg+xml"
href="{{ url_for('static', filename='images/logo.svg') }}">
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-10 01:32:35 +02:00
<div class="page_wrapper">
<div class="center_wrapper">
<div class="header_wrapper">
<div class="header">
2023-04-09 08:29:44 +02:00
<span class="black bold">THSF</span>
<span class="white thin">2023</span>
</div>
2023-04-10 01:32:35 +02:00
<div class="subheader">
2023-04-09 08:29:44 +02:00
<span class="white thin">Toulouse Hacker Space Factory</span>
</div>
2023-04-10 01:32:35 +02:00
<div class="place">
2023-04-09 08:29:44 +02:00
<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-10 01:32:35 +02:00
<div class="partners">
2023-04-10 01:50:02 +02:00
<div class="subpartners">
2023-04-10 21:58:26 +02:00
<a href="https://www.tetalab.org/" target="_new">
2023-04-10 01:50:02 +02:00
<img src="{{ url_for('static', filename='images/tetalab.png')}}"
2023-04-10 21:54:51 +02:00
alt="Tetalab"
title="Tetalab"
2023-04-10 21:58:26 +02:00
class="logo_partner">
2023-04-10 01:50:02 +02:00
</a>
2023-04-12 13:31:33 +02:00
<a href="https://www.librairie-terranova.fr/" target="_new">
<img src="{{ url_for('static', filename='images/terranova.jpg')}}"
alt="Librairie Terra Nova"
title="Librairie Terra Nova"
class="logo_partner">
</a>
</div>
<div class="subpartners">
2023-04-20 15:07:47 +02:00
<a href="https://www.tvbruits.org/" target="_new">
<img src="{{ url_for('static', filename='images/tv-bruits.png')}}"
alt="TV Bruits"
title="TV Bruits"
class="logo_partner">
</a>
2023-04-10 21:58:26 +02:00
<a href="https://www.tetaneutral.net/" target="_new">
2023-04-10 01:50:02 +02:00
<img src="{{ url_for('static', filename='images/tetaneutral.png')}}"
2023-04-10 21:54:51 +02:00
alt="Tetaneutral"
title="Tetaneutral"
2023-04-10 21:58:26 +02:00
class="logo_partner">
2023-04-10 01:50:02 +02:00
</a>
2023-04-20 15:07:47 +02:00
<a href="https://www.radio-fmr.net/" target="_new">
<img src="{{ url_for('static', filename='images/fmr.png')}}"
alt="Radio FMR"
title="Radio FMR"
class="logo_partner">
</a>
2023-04-10 01:50:02 +02:00
</div>
<div class="subpartners">
2023-04-10 21:58:26 +02:00
<a href="https://clutchmag.fr/" target="_new">
2023-04-10 01:50:02 +02:00
<img src="{{ url_for('static', filename='images/clutch.png')}}"
2023-04-10 21:54:51 +02:00
alt="Clutch"
title="Clutch"
2023-04-10 21:58:26 +02:00
class="logo_partner">
2023-04-10 01:50:02 +02:00
</a>
2023-04-10 21:58:26 +02:00
<a href="https://www.antistatik.store/" target="_new">
2023-04-10 01:50:02 +02:00
<img src="{{ url_for('static', filename='images/antistatik.png')}}"
2023-04-10 21:54:51 +02:00
alt="Antistatik"
title="Antistatik"
2023-04-10 21:58:26 +02:00
class="logo_partner">
2023-04-10 01:50:02 +02:00
</a>
</div>
2023-04-09 13:45:28 +02:00
</div>
2023-04-11 10:05:13 +02:00
{% block navbar %}
{% include "navbar.html" %}
{% endblock %}
2023-04-09 08:29:44 +02:00
</div>
</div>
2023-04-05 16:14:50 +02:00
</body>
</html>