wip beta
This commit is contained in:
22
src/thsf/templates/base.html
Normal file
22
src/thsf/templates/base.html
Normal file
@@ -0,0 +1,22 @@
|
||||
<!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="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>
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
36
src/thsf/templates/index.html
Normal file
36
src/thsf/templates/index.html
Normal file
@@ -0,0 +1,36 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div id="main_wrapper">
|
||||
<div id="header_wrapper">
|
||||
<div id="header">
|
||||
<span class="header black bold">THSF</span>
|
||||
<span class="header white thin">2023</span>
|
||||
</div>
|
||||
<div id="subheader">
|
||||
<span class="subheader white thin">Toulouse Hacker Space Factory</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="place black thin">26 28 mai 2023 - </span>
|
||||
<span class="place white bold">CINÉMA UTOPIA BORDEROUGE</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id="logo_wrapper">
|
||||
<img class="logo"
|
||||
src="{{ url_for('static', filename='images/logo.svg') }}"
|
||||
alt="THSF 2023 - S/Extraire"
|
||||
title="THSF 2023 - S/Extraire"/>
|
||||
</div>
|
||||
<div id="navbar_wrapper">
|
||||
<i class="button black fa-solid fa-guitar"></i>
|
||||
<i class="button black fa-solid fa-chalkboard"></i>
|
||||
<i class="button black fa-solid fa-compact-disc"></i>
|
||||
<i class="button black fa-solid fa-film"></i>
|
||||
<i class="button black fa-solid fa-people-group"></i>
|
||||
<i class="button black fa-solid fa-palette"></i>
|
||||
<i class="button black fa-solid fa-person-chalkboard"></i>
|
||||
</div>
|
||||
<div id="cursorbar">
|
||||
<div class="cursor"></div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
18
src/thsf/templates/planning.html
Normal file
18
src/thsf/templates/planning.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% extends "base.html" %}
|
||||
{% block headers %}
|
||||
<script type="text/javascript" src="https://23.thsf.net/thsf-2023/schedule/widget/v2.en.js"></script>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div id="thsf-schedule-wrapper">
|
||||
<pretalx-schedule event-url="https://23.thsf.net/thsf-2023/" locale="fr" format="list" style="--pretalx-clr-primary: #91AE2C"></pretalx-schedule>
|
||||
<noscript>
|
||||
<div class="pretalx-widget">
|
||||
<div class="pretalx-widget-info-message">
|
||||
JavaScript is disabled in your browser. To access our schedule without JavaScript,
|
||||
please <a target="_blank" href="https://23.thsf.net/thsf-2023/schedule/">click here</a>.
|
||||
</div>
|
||||
</div>
|
||||
</noscript>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user