-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnotes.html
More file actions
82 lines (75 loc) · 2.13 KB
/
notes.html
File metadata and controls
82 lines (75 loc) · 2.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
layout: default
---
<nav>
<a href="index.html" class="subNavBtn active">Home</a>
<a href="stuff-i-do.html" class="subNavBtn">Math</a>
<a href="#contacts" class="subNavBtn">Contacts</a>
<a href="teaching.html" class="subNavBtn">Teaching</a>
Notes
</nav>
<div class="notes-container" id="notes">
<h3>Notes, Drafts, Talks</h3>
<div class="notes-grid">
{% for note in site.data.notes %}
<div class="note-card">
<h4 class="note-title">
{% if note.type == "talk" %}
🎤
{% elsif note.type == "note" %}
📝
{% elsif note.type == "dida" %}
📚
{% endif %}
<a href="{{ note.url }}" class="note-link" target="_blank">
{{ note.title }}
</a>
</h4>
{% if note.description %}
<p class="note-description">{{ note.description }}</p>
{% endif %}
</div>
{% endfor %}
</div>
</div>
<div class="notes-container" id="notes">
<h3>Magia Mathematica</h3>
<div class="notes-grid">
{% for thing in site.data.magia %}
<div class="note-card">
<h4 class="note-title">
<a href="{{ thing.url }}" class="note-link" target="_blank">
📄 {{ thing.title }}
</a>
</h4>
{% if thing.description %}
<p class="note-description">{{ thing.description }}</p>
{% endif %}
</div>
{% endfor %}
</div>
</div>
<footer>
<section id="contacts">
<div class="contact-container">
<div class="contact-map">
<iframe src="https://maps.google.com/maps?q=Akadeemia+tee+21B,+Tallinn,+Estonia&hl=en&output=embed"
width="400" height="250" style="border:0;" allowfullscreen="" loading="lazy">
</iframe>
</div>
<div class="contact-info">
<h2>Contacts</h2>
<h5>Fosco G. Loregian</h5>
<ul>
<li><strong>📍 Address:</strong> Akadeemia tee 21B | 12618 Tallinn | Estonia 🇪🇪</li>
<li><strong>📧 Email:</strong> <a
href="mailto:fosco.loregian@gmail.com">fosco.loregian@gmail.com</a></li>
<li><strong>📧 Email:</strong> <a href="mailto:folore@ttu.ee">folore@ttu.ee</a>
</li>
<li><strong>💻 GitHub:</strong> <a href="https://github.com/tetrapharmakon"
target="_blank">tetrapharmakon</a></li>
</ul>
</div>
</div>
</section>
</footer>