2023-12-17 15:16:04 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
2023-12-26 04:37:38 +00:00
|
|
|
{% if paginator.page_path contains "index" %}
|
2023-12-17 15:16:04 +00:00
|
|
|
<p class="home-description">
|
2024-01-09 23:24:27 +00:00
|
|
|
Most applications listed below are served from <a href="https://nixos.org/">NixOS</a>
|
|
|
|
machines hosted on <a href="https://www.digitalocean.com/">Digital Ocean</a>.
|
|
|
|
Configuration files for each of my machines can be found <a href="https://git.jrpotter.com/r/nixos-configuration">here</a>.
|
2023-12-17 15:16:04 +00:00
|
|
|
If interested in starting a similar hosting solution, consider getting a $200
|
2024-01-09 23:24:27 +00:00
|
|
|
credit using my <a href="https://m.do.co/c/c65b89434c1b">referral link</a>.
|
2023-12-17 15:16:04 +00:00
|
|
|
</p>
|
2023-12-26 04:37:38 +00:00
|
|
|
{% endif %}
|
2023-12-17 15:16:04 +00:00
|
|
|
|
2023-12-25 19:00:55 +00:00
|
|
|
{% for post in paginator.posts %}
|
2023-12-17 15:16:04 +00:00
|
|
|
<div class="posts-container">
|
|
|
|
<h1>
|
2024-01-09 23:24:27 +00:00
|
|
|
<a href="{{ post.href }}">{{ post.title }}</a>
|
2023-12-17 15:16:04 +00:00
|
|
|
</h1>
|
|
|
|
{% if post.image %}
|
|
|
|
<div class="thumbnail-container">
|
2024-01-09 23:24:27 +00:00
|
|
|
<a href="{{ post.href }}">
|
2023-12-17 22:24:47 +00:00
|
|
|
<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 %}
|
2024-01-09 23:24:27 +00:00
|
|
|
<a href="{{ post.href }}">{{ post.href }}</a> -
|
2023-12-17 22:24:47 +00:00
|
|
|
{% 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>
|
|
|
|
{% endfor %}
|
2023-12-25 19:00:55 +00:00
|
|
|
|
|
|
|
{% include post-paginator.html %}
|