mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
65 lines
1.6 KiB
HTML
65 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
|
|
<div class="md:w-full">
|
|
<h1 class="text-4xl">Latest Stories</h1>
|
|
<p class="mt-0 text-xl">
|
|
Keep up with current information from Boost and our community. (Under construction)
|
|
</p>
|
|
|
|
<div class="divide-y divide-gray-300">
|
|
{% if entry_list %} {% comment %}New functionality{% endcomment %}
|
|
|
|
{% for entry in entry_list %}
|
|
<div class="flex py-4">
|
|
<div class="py-5 w-1/6">
|
|
<h5>{{ entry.publish_at|date:"M jS, Y" }}</h5>
|
|
</div>
|
|
<div class="w-5/6 text-xl">
|
|
<p><a href="{{ entry.get_absolute_url }}">{{ entry.title }}</a></p>
|
|
<div class="space-x-8 uppercase">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<div class="flex py-4">
|
|
<div class="py-5 w-1/6">
|
|
<h5>May 10th, 2023</h5>
|
|
</div>
|
|
|
|
<div class="w-5/6 text-xl">
|
|
<p>
|
|
Boost website renovation Beta Phase started.
|
|
</p>
|
|
<div class="space-x-8 uppercase">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex py-4">
|
|
<div class="py-5 w-1/6">
|
|
<h5>Oct 9th, 2021</h5>
|
|
</div>
|
|
|
|
<div class="w-5/6 text-xl">
|
|
<p>
|
|
Start of website project.
|
|
</p>
|
|
<div class="space-x-8 uppercase">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endif %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|