-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (80 loc) · 3.5 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
82
83
84
85
86
---
layout: default
blog-category: blog
---
<br />
<div class="home">
<div class="page-description">
I am an <a class="external-link" href="https://www.gnu.org/software/emacs/">Emacs</a> enthusiast, so I welcome you to my <a class="external-link" href="https://github.com/FrancisMurillo/.emacs.d">customized Emacs</a> themed blog.
Since I don't have an eye for design, I just emulate my working Emacs environment to pass for personality.
<br /><br />
My blog is categorized by <a class="external-link" href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Minor-Modes.html#Minor-Modes">minor modes</a>.
<ul>
<li class="item-definition">
<div>
<a class="internal-link" href="/hacker">
Hacker
</a>
</div>
<span>
Living my life in Emacs, I want to show my love and support on how it changed my life. Also as a polyglot and idealist, I talk about hacks, ideas, lessons and musings from various fields that you might hopefully find useful.
</span>
</li>
<li class="item-definition">
<div>
<a class="internal-link" href="/watcher">
Watcher
</a>
</div>
<span>
I watch too many films and play too much video games. Since I can't play and watch everything, I tend pick and choose quality, meaning and personal value to maximize time and minimize frustration.
</span>
</li>
</ul>
<br />
To get started, click on any of the minor modes above or checkout the latest posts below. Although it takes a long time to research and write papers and presentations, I hope to write something every month but things always seem to happen that take my focus away. Nonetheless, I hope you find these writings useful or entertaining or both.
</div>
<br />
<b>Latest Posts</b>
<ul class="post-list">
{% assign latest-hacker = site.posts | where: "blog-category","hacker" | first %}
{% if latest-hacker %}
<li class="post-item">
{% include post-item.html
title=latest-hacker.title
tagline=latest-hacker.tagline
blog-category=latest-hacker.blog-category
date=latest-hacker.date
content=latest-hacker.content
url=latest-hacker.url
%}
</li>
{% endif %}
{% assign latest-watcher = site.posts | where: "blog-category","watcher" | first %}
{% if latest-watcher %}
<li class="post-item">
{% include post-item.html
title=latest-watcher.title
tagline=latest-watcher.tagline
blog-category=latest-watcher.blog-category
date=latest-watcher.date
content=latest-watcher.content
url=latest-watcher.url
%}
</li>
{% endif %}
{% assign latest-meta = site.posts | where: "blog-category","meta" | first %}
{% if latest-meta %}
<li class="post-item">
{% include post-item.html
title=latest-meta.title
tagline=latest-meta.tagline
blog-category=latest-meta.blog-category
date=latest-meta.date
content=latest-meta.content
url=latest-meta.url
%}
</li>
{% endif %}
</ul>
</div>