Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/frieseneggerf/frieseneggerf.github.io
- Owner: frieseneggerf
- License: mit
- Created: 2024-03-02T17:09:48.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-12-25T17:26:06.000Z (about 1 month ago)
- Last Synced: 2024-12-25T17:29:40.377Z (about 1 month ago)
- Topics: academic-website, jekyll, jekyll-site, personal-website, website
- Language: HTML
- Homepage: https://friesenegger.xyz/
- Size: 67.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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 %}
```