Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/frieseneggerf/frieseneggerf.github.io

Source for my personal website using the amazing al-folio jekyll theme
https://github.com/frieseneggerf/frieseneggerf.github.io

academic-website jekyll jekyll-site personal-website website

Last synced: about 1 month ago
JSON representation

Source for my personal website using the amazing al-folio jekyll theme

Awesome Lists containing this project

README

        

# My personal website

This is the source for my personal website at [friesenegger.xyz](https://friesenegger.xyz).

It uses the amazing al-folio jekyll theme, check [here](https://github.com/alshedivat/al-folio) if you want to use it too. It is hosted for free using github-pages.

## My changes to the theme

I modified [\_includes/resume/languages.liquid](_includes/resume/languages.liquid) to be able to use emojis as icons for languages in my resume.

```diff


{% for content in data[1] %}




{% if content.icon %}
-
-
-
+ {% if content.icon[0] == 'f' %}
+
+
+
+ {% else %}
+
+ {{ content.icon }}
+
+ {% endif %}
{% else %}

{% endif %}
```