pelican-website-ge/ge-theme/templates/home-template.html

23 lines
806 B
HTML
Raw Normal View History

2021-05-19 17:38:39 +02:00
{% extends "base.html" %}
{% block head %}
{{ super() }}
<link rel="stylesheet" type="text/css" href="{{SITEURL}}/theme/css/home-styles.css">
{% endblock %}
{% block content %}
2021-05-20 20:38:50 +02:00
<div class="container-fluid">
2021-05-21 17:26:00 +02:00
<div class="row gx-0 height-row">
<div class="col-lg-6 col-md-12 col-sm-12">
<img src="{{SITEURL}}/theme/images/home-imgs/home-img1.gif" class=" img-fluid img-style" alt="img-gif" >
2021-05-20 20:38:50 +02:00
</div>
2021-05-21 17:26:00 +02:00
<div class="col-lg-6 col-md-12 col-sm-12">
2021-05-20 20:38:50 +02:00
<div class="wrapper-col">
<p class="row-one-words">Prospering economies built by thriving communities</p>
<img class="img-fluid mx-auto d-block row-one-img" src="{{SITEURL}}/theme/images/home-imgs/home-logo.webp">
</div>
2021-05-19 17:38:39 +02:00
</div>
</div>
</div>
2021-05-20 20:38:50 +02:00
{% endblock %}