portfolio/_layouts/home.html

44 lines
1.4 KiB
HTML
Raw Normal View History

2023-12-17 15:16:04 +00:00
---
layout: default
---
<p class="home-description">
2023-12-17 22:24:47 +00:00
Most applications listed below are served from <a href="https://nixos.org/" target="_blank">NixOS</a>
2023-12-17 15:16:04 +00:00
machines hosted on <a href="https://www.digitalocean.com/" target="_blank">Digital Ocean</a>.
2023-12-24 05:00:26 +00:00
Configuration files for each of my machines can be found <a href="https://git.jrpotter.com/r/nixos-configuration" target="_blank">here</a>.
2023-12-17 15:16:04 +00:00
If interested in starting a similar hosting solution, consider getting a $200
credit using my <a href="https://m.do.co/c/c65b89434c1b" target="_blank">referral link</a>.
</p>
{% for post in site.posts %}
{% if post.categories contains "home" %}
<div class="posts-container">
<h1>
<a href="{{ post.href }}" target="_blank">{{ post.title }}</a>
</h1>
{% if post.image %}
<div class="thumbnail-container">
2023-12-17 22:24:47 +00:00
<a href="{{ post.href }}" target="_blank">
<img src="{{ site.github.url }}/assets/img/{{ post.image }}">
</a>
2023-12-17 15:16:04 +00:00
</div>
{% endif %}
<p>
2023-12-17 22:24:47 +00:00
<div class="post-tags">
{% for tag in post.tags %}
<div class="{{ tag }}">{{ tag }}</div>
{% endfor %}
</div>
<p>{{ post.content }}</p>
<span class="post-date">
{% if post.href %}
<a href="{{ post.href }}" target="_blank">{{ post.href }}</a> -
{% endif %}
<i class="fa fa-calendar" aria-hidden="true"></i>
{{ post.date | date_to_string }}
</span>
2023-12-17 15:16:04 +00:00
</p>
</div>
{% endif %}
{% endfor %}