mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-06-05 00:36:03 -04:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
{% extends 'pages/base.html' %}
|
|
{% load static %}
|
|
{% block title %}Home{% endblock title %}
|
|
{% block css %}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'pages/css/styles.css' %}">
|
|
{% endblock css %}
|
|
{% block content %}
|
|
<div class="jumbotron jumbotron-fluid">
|
|
<div class="container hero-text contrast">
|
|
<h1 class="display-4"><strong><span class="no-mobile">TJHSST</span> Class of 2023</strong></h1>
|
|
<p class="lead">We are the class to beat!</p>
|
|
</div>
|
|
</div>
|
|
<div class="container news">
|
|
<h1 class="text-center font-weight-bold">2023 News</h1>
|
|
<br><br>
|
|
<div class="row">
|
|
{% for story in stories %}
|
|
<div class="border-sides col-md-4 news-col card">
|
|
<img class="card-img-top" src="{% static 'pages/css/img' %}/{{ story.img_name }}" alt="{{ story.header }} Image">
|
|
<div class="card-body">
|
|
<h3 class="card-title">{{ story.header }}</h3>
|
|
<p class="card-text">{{ story.body }}</p>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |