2024-01-17 15:43:51 +00:00
|
|
|
{% extends "base.html" %}
|
2023-06-01 21:25:13 +00:00
|
|
|
|
2024-01-17 15:43:51 +00:00
|
|
|
{% block content %}
|
2023-06-01 21:25:13 +00:00
|
|
|
<center>
|
2024-01-17 15:43:51 +00:00
|
|
|
<h1>{{ title }}</h1>
|
2023-06-01 21:25:13 +00:00
|
|
|
<div class="channel-list">
|
2024-01-17 15:43:51 +00:00
|
|
|
{% for channel in channels %}
|
2023-06-01 21:25:13 +00:00
|
|
|
<div style="display:inline-block">
|
2024-01-17 15:43:51 +00:00
|
|
|
<a href="{{ channel.link }}" style="position:relative;text-align:center;color:white;">
|
|
|
|
<img src="{{ channel.img }}" alt="{{ channel.title }}" style="display:inline-block;max-width:200px;">
|
|
|
|
<p style="position:absolute;bottom:0px;left:4px;font-weight:thin;">{{ channel.title }}</p>
|
2023-06-01 21:25:13 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2024-01-17 15:43:51 +00:00
|
|
|
<h2><a href="{{ path }}projects/">Featured Projects</a></h2>
|
2023-06-01 21:25:13 +00:00
|
|
|
<div class="project-list">
|
2024-01-17 15:43:51 +00:00
|
|
|
{% for ible in ibles %}
|
2023-06-01 21:25:13 +00:00
|
|
|
<div class="ible-list-item">
|
2024-01-17 15:43:51 +00:00
|
|
|
<a href="{{ ible.link }}">
|
|
|
|
<img src="{{ ible.img }}" alt="{{ ible.title }}">
|
2023-06-01 21:25:13 +00:00
|
|
|
<br>
|
2024-01-17 15:43:51 +00:00
|
|
|
<span><b>{{ ible.title }}</b></span>
|
2023-06-01 21:25:13 +00:00
|
|
|
</a>
|
2024-01-17 15:43:51 +00:00
|
|
|
<span>by <a href="{{ ible.author_link }}">{{ ible.author }}</a></span>
|
|
|
|
<span>in <a href="{{ ible.channel_link }}">{{ ible.channel }}</a></span>
|
2023-06-01 21:25:13 +00:00
|
|
|
<br>
|
2024-01-17 15:43:51 +00:00
|
|
|
<span>{{ ible.views }} Views </span>
|
|
|
|
<span>{{ ible.favorites }} Favorites</span>
|
2023-06-01 21:25:13 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<h2><a href="/contest/">Contests</a></h2>
|
|
|
|
<div style="display:inline-block;">
|
2024-01-17 15:43:51 +00:00
|
|
|
{% for contest in contests %}
|
|
|
|
<a href="{{ contest.link }}" style="color:#bbc2cf;">
|
|
|
|
<img src="{{ contest.img }}" alt="{{ contest.title }}" style="max-width:400px;">
|
2023-06-01 21:25:13 +00:00
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</center>
|
2024-01-17 15:43:51 +00:00
|
|
|
{% endblock %}
|