Queerscriptors.org/templates/index.html

27 lines
996 B
HTML
Raw Normal View History

2021-08-18 00:13:13 +00:00
{% extends "layout.html" %}
2022-09-22 21:55:25 +00:00
{% block page %}
{% include 'masterhead.html' %}
{% include 'about.html' %}
2021-08-18 00:13:13 +00:00
<!-- Projects-->
<section class="projects-section bg-light" id="projects">
<div class="container px-4 px-lg-5">
2022-09-04 08:17:31 +00:00
{% for project in this.children %}
2021-08-18 00:13:13 +00:00
{% set image = project.attachments.images.first() %}
2022-08-21 11:31:33 +00:00
<div class="row gx-0 mb-5 mb-md-0 justify-content-center">
<div class="col-lg-6"><img class="img-fluid" src="{{ image|url }}" alt="project image" /></div>
<div class="col-lg-6 {% if not project.type %} order-lg-first {% endif %} ">
2022-08-21 11:31:33 +00:00
<div class="bg-black text-center h-100 project">
<div class="d-flex h-100">
<div class="my-4 my-lg-auto w-100 text-center">
<h2 class="text-white mb-5">{{ project.title }}</h2>
2022-09-24 13:45:44 +00:00
<a href="{{ project|url }}" class="btn btn-primary"><i class="fa fa-search" aria-hidden="true"></i> {{ _("Details") }}</a>
2021-08-18 00:13:13 +00:00
</div>
</div>
</div>
</div>
2022-08-21 11:31:33 +00:00
</div>
2021-08-18 00:13:13 +00:00
{% endfor %}
</div>
</section>
{% endblock %}