-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
81 lines (55 loc) · 2.4 KB
/
index.html
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
---
layout: default
title: Victory's Blog
---
<h1>{{ page.title }}</h1>
<p>My name is Victory Omole. I have a Bachelor of Science in Computer Engineering from Iowa State University.
My calling is to contribute to the world-wide effort of building a large-scale quantum computer. The best way to reach me is via email: [email protected].</p>
<h2>2024</h2>
<ul class="posts">
{% for humanity in site.categories.twentytwentyfour %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>
<h2>2023</h2>
<ul class="posts">
{% for humanity in site.categories.twentytwentythree %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>
<h2>2022</h2>
<ul class="posts">
{% for humanity in site.categories.twentytwentytwo %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>
<h2>2021</h2>
<ul class="posts">
{% for humanity in site.categories.twentytwentyone %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>
<h2>2020</h2>
<ul class="posts">
{% for humanity in site.categories.twentytwenty %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>
<h2>2019</h2>
<ul class="posts">
{% for humanity in site.categories.twentynineteen %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>
<h2>2018</h2>
<ul class="posts">
{% for humanity in site.categories.twentyeighteen %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>
<h2>2016</h2>
<ul class="posts">
{% for humanity in site.categories.twentysixteen %}
<li><span>{{ humanity.date | date_to_string }}</span> » <a href="{{ humanity.url }}" title="{{ humanity.title }}">{{ humanity.title }}</a></li>
{% endfor %}
</ul>