wirechan/templates/index.html

34 lines
No EOL
1.3 KiB
HTML

<html>
<head>
<title>wirechan</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
</head>
<body>
<div>
<h1>wirechan</h1>
<h4>the wirechan imageboard</h4>
</div>
<div class="link-container">
<h4>list of boards:</h4>
<a href="{{ url_for('board', board_name='b') }}">/b/ - random</a>
<a href="{{ url_for('board', board_name='g') }}">/g/ - technology</a>
<a href="{{ url_for('board', board_name='a') }}">/a/ - anime</a>
<a href="{{ url_for('board', board_name='v') }}">/v/ - video games</a>
<a href="{{ url_for('board', board_name='w') }}">/w/ - wallpapers</a>
<a href="{{ url_for('board', board_name='x') }}">/x/ - paranormal</a>
<a href="{{ url_for('board', board_name='t') }}">/t/ - test</a>
<a href="{{ url_for('board', board_name='s') }}">/s/ - soyjaks</a>
<a href="{{ url_for('board', board_name='pol') }}">/pol/ - politically incorrect</a>
</div>
<div class="link-container">
<h4>registration is optional</h4>
<a href="{{ url_for('login') }}">login</a>
<a href="{{ url_for('register') }}">register</a>
</div>
<div class="bottom">
<a>lainlounge.xyz - copyleft all wrongs released</a>
</div>
{% block content %}
{% endblock %}
</body>
</html>