diff options
author | Franck Cuny <franck@fcuny.net> | 2024-09-22 11:15:07 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-09-22 11:15:07 -0700 |
commit | ed1db38bdb2f9c6a114b8c1c3bba705dc276dc45 (patch) | |
tree | 3a2bddaae0c32dce6723c8498d15ac8f0a7e76f6 | |
parent | simplify the CSS (diff) | |
download | fcuny.net-ed1db38bdb2f9c6a114b8c1c3bba705dc276dc45.tar.gz |
restructure a bit the index
-rw-r--r-- | content/_index.md | 3 | ||||
-rw-r--r-- | templates/index.html | 20 |
2 files changed, 10 insertions, 13 deletions
diff --git a/content/_index.md b/content/_index.md index da8dcfd..f17087d 100644 --- a/content/_index.md +++ b/content/_index.md @@ -7,6 +7,3 @@ My name is Franck Cuny and this is my little corner on the web. I currently work as a [Site Reliability Engineer](https://en.wikipedia.org/wiki/Site_reliability_engineering) (SRE) at [Roblox](https://www.roblox.com). Previously, I worked as a SRE at [Twitter](https://twitter.com/TwitterEng), and my focus was on infrastructure. I'm interested in building sustainable teams, improving the management and operation of large infrastructure, and to work with different teams to implement best practices around reliability and security. - -- Some of my code is shared on [GitHub](https://github.com/fcuny) -- Email: franck@fcuny.net diff --git a/templates/index.html b/templates/index.html index 4f848be..5c11ab3 100644 --- a/templates/index.html +++ b/templates/index.html @@ -9,29 +9,29 @@ </section> {% endif %} -<h2>articles</h2> +<h2>articles ⇢</h2> {%- set blog = get_section(path="blog/_index.md") -%} {%- set post_count = blog.pages | length -%} -<ul> {%- for post in blog.pages %} -<li><article> +<article> <h3><a href="{{- post.path|safe -}}">{{- post.title -}}</a></h3> <time datetime="{{ post.date | date(format="%+")}}">{{ post.date | date(format="%B %m, %Y")}}</time> -</article></li> +</article> {%- endfor %} -</ul> -<h2>notes</h2> +<h2>notes ⇢</h2> {%- set notes = get_section(path="notes/_index.md") -%} {%- set post_count = notes.pages | length -%} -<ul> {%- for post in notes.pages %} -<li><article> +<article> <h3><a href="{{- post.path|safe -}}">{{- post.title -}}</a></h3> <time datetime="{{ post.date | date(format="%+")}}">{{ post.date | date(format="%B %m, %Y")}}</time> -</article></li> +</article> {%- endfor %} -</ul> + +<h2>contact</h2> + +Email: <a href="mailto:franck@fcuny.net">franck@fcuny.net</a> </section> |