You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
HTML
64 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>SI16 - {{ title }}</title>
|
|
|
|
<!-- style -->
|
|
<link
|
|
rel="stylesheet"
|
|
href="/soupboat/si16-app{{url_for('static', filename='font/font.css')}}"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="/soupboat/si16-app{{url_for('static', filename='css/variables.css')}}"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="/soupboat/si16-app{{url_for('static', filename='css/global.css')}}"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="/soupboat/si16-app{{url_for('static', filename='css/list.css')}}"
|
|
/>
|
|
|
|
<!-- script -->
|
|
|
|
<script src="/soupboat/si16-app{{url_for('static', filename='js/lodash.js')}}"></script>
|
|
|
|
<script
|
|
src="/soupboat/si16-app{{url_for('static', filename='js/spawnSticker.js')}}"
|
|
defer
|
|
></script>
|
|
</head>
|
|
<body>
|
|
<section id="sticker-container"></section>
|
|
<section id="sticker-fix-container"></section>
|
|
|
|
<section class="page--header">
|
|
<header>
|
|
<h1 class="title">{{title}}</h1>
|
|
</header>
|
|
<nav>
|
|
<a href="/" data-sticker-fix="Home"></a>
|
|
</nav>
|
|
</section>
|
|
|
|
<main class="page--content">
|
|
<p class="description">{{description}}</p>
|
|
|
|
<table class="list">
|
|
{% for function in functions %}
|
|
<tr>
|
|
<td class="title">{{function['title']}}</td>
|
|
<td class="description">{{function['description']}}</td>
|
|
<td class="link"><a href="{{function['title']/}}">></a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</main>
|
|
</body>
|
|
</html>
|