-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 1.74 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{% extends "base.html" %}
{% block content %}
<div class="mx-auto">
<main class="d-flex justify-content-center">
<div>
<h2 class="fs-1 fw-bold">
PyLendar
<br>
</h2>
<p>
Open Source Calendar built with Python
</p>
<div class="d-flex position-relative">
<div class="container mx-auto gap-3">
{% if quote %}
{% if not quote.author %}
<p><i>"{{ quote.text }}"</i></p>
{% else %}
<p><i id="quote">"{{ quote.text }}"</i> <span id="author" style="font-size: small;"> \ {{ quote.author }}
{% if quote.is_favorite %}
<img src="../media/full_heart.png" class="heart">
{% else %}
<img src="../media/empty_heart.png" class="heart">
{% endif %}
</span>
</p>
{% endif %}
{% endif %}
</div>
</div>
<div class="d-flex justify-content-center">
<div class="d-flex justify-content-center">
<a href="{{ url_for('calendar') }}"
class="btn btn-lg btn-primary shadow-lg bg-body p-3 mb-5 bg-gradient2 landing-page-button"
type="button">
<span>Get Started</span>
</a>
</div>
</div>
</div>
</main>
<div>
<img class="d-block w-100" src="{{ url_for('static', path='/images/calendar.jpg') }}" alt="calendar image">
</div>
</div>
{% endblock %}