Skip to content

Commit

Permalink
7132024 update
Browse files Browse the repository at this point in the history
Adding a blog post and updating a good whack of stuff.
  • Loading branch information
prairiepilotfpv committed Jul 14, 2024
1 parent 1c935ee commit 949b4d1
Show file tree
Hide file tree
Showing 16 changed files with 529 additions and 462 deletions.
Binary file removed _posts/.2024-04-04-march-by.md.swp
Binary file not shown.
Binary file added assets/img/julier/IMG_6828.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/julier/julier-frostgrave-one.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/julier/julier-header.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/julier/julier-thumb-1-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/julier/julier-thumb-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/julier/julier-thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
229 changes: 8 additions & 221 deletions projects.md
Original file line number Diff line number Diff line change
@@ -1,231 +1,18 @@
---
layout: page
title: Projects
subtitle: A showcase of ongoing projects and progress
layout: page
subtitle:
---

<!-- Style for section headings and dividers -->
<style>
.section-heading {
font-size: 2.5em;
text-align: center;
margin: 40px 0 20px;
color: #333;
font-weight: bold;
border-bottom: 2px solid #ddd;
padding-bottom: 10px;
}
</style>

<!-- Frostgrave Section -->
<h1 class="section-heading">Frostgrave</h1>

<p>

I'm the most excited about this. It's been a long time coming, but I'm pumped to finally see the finish line. I've got minis, I've got more and more terrain by the day, I've even got a big stack of character sheets and spell cards. I'm also thinking of some fun ways to show off all the fun stuff I've been working on.

</p>

<!-- Post list for Frostgrave category -->
<ul class="posts-list list-unstyled" role="list">
{% assign frostgrave_posts = site.posts | where: "category", "Frostgrave" %}
{% for post in frostgrave_posts %}
<li class="post-preview">
<article>
<!-- Capture the thumbnail image -->
{%- capture thumbnail -%}
{% if post.thumbnail-img %}
{{ post.thumbnail-img }}
{% elsif post.cover-img %}
{% if post.cover-img.first %}
{{ post.cover-img[0].first.first }}
{% else %}
{{ post.cover-img }}
{% endif %}
{% else %}
{% endif %}
{% endcapture %}
{% assign thumbnail = thumbnail | strip %}

<!-- Display the thumbnail image if available -->
{% if thumbnail != "" %}
<div class="post-image">
<a href="{{ post.url | absolute_url }}" aria-label="Thumbnail">
<img src="{{ thumbnail | absolute_url }}" alt="Post thumbnail">
</a>
</div>
{% endif %}

<!-- Post title and subtitle -->
<a href="{{ post.url | absolute_url }}">
<h2 class="post-title">{{ post.title | strip_html }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">{{ post.subtitle | strip_html }}</h3>
{% endif %}
</a>

<!-- Author and meta information -->
{% if post.author %}
<span>By <strong>{{ post.author | strip_html }}</strong></span>
{% endif %}
<p class="post-meta">
{% assign date_format = site.date_format | default: "%B %-d, %Y" %}
Posted on {{ post.date | date: date_format }}
</p>

<!-- Post excerpt and read more link -->
<div class="post-entry">
{% assign excerpt_length = site.excerpt_length | default: 50 %}
{{ post.excerpt | strip_html | truncatewords: excerpt_length }}
{% assign excerpt_word_count = post.excerpt | number_of_words %}
{% if post.content != post.excerpt or excerpt_word_count > excerpt_length %}
<a href="{{ post.url | absolute_url }}" class="post-read-more">[Read&nbsp;More]</a>
{% endif %}
</div>

<!-- Post tags -->
{% if site.feed_show_tags != false and post.tags.size > 0 %}
<div class="blog-tags">
<span>Tags:</span>
<!-- Inline list of tags -->
<ul class="d-inline list-inline" role="list">
{% for tag in post.tags %}
<li class="list-inline-item">
<a href="{{ '/tags' | absolute_url }}#{{- tag -}}">{{- tag -}}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</article>
</li>
{% endfor %}
</ul>

<!-- Pagination for Frostgrave section -->
{% if paginator.total_pages > 1 %}
<ul class="pagination main-pager">
{% if paginator.previous_page %}
<li class="page-item previous">
<a class="page-link" href="{{ paginator.previous_page_path | absolute_url }}">
<i class="fas fa-arrow-left" alt="Newer Posts"></i>
<span class="d-none d-sm-inline-block">Newer Posts</span>
</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="page-item next">
<a class="page-link" href="{{ paginator.next_page_path | absolute_url }}">
<span class="d-none d-sm-inline-block">Older Posts</span>
<i class="fas fa-arrow-right" alt="Older Posts"></i>
</a>
</li>
{% endif %}
</ul>
{% endif %}

<!-- One Page Rules Section -->
<h1 class="section-heading">One Page Rules</h1>

<p>
This is dedicated to the One Page Rules army I didn't need to start. I really don't need more projects but I have poor self control and two different game stores opened a mile away. So now I've got a proxy Killteam list AND a growing OPR Dwarven Guilds list! HURRAH!
</p>

<!-- Post list for OPR category -->
<ul class="posts-list list-unstyled" role="list">
{% assign opr_posts = site.posts | where: "category", "OPR" %}
{% for post in opr_posts %}
<li class="post-preview">
<article>
<!-- Capture the thumbnail image -->
{%- capture thumbnail -%}
{% if post.thumbnail-img %}
{{ post.thumbnail-img }}
{% elsif post.cover-img %}
{% if post.cover-img.first %}
{{ post.cover-img[0].first.first }}
{% else %}
{{ post.cover-img }}
{% endif %}
{% else %}
{% endif %}
{% endcapture %}
{% assign thumbnail = thumbnail | strip %}

<!-- Display the thumbnail image if available -->
{% if thumbnail != "" %}
<div class="post-image">
<a href="{{ post.url | absolute_url }}" aria-label="Thumbnail">
<img src="{{ thumbnail | absolute_url }}" alt="Post thumbnail">
</a>
</div>
{% endif %}

<!-- Post title and subtitle -->
<a href="{{ post.url | absolute_url }}">
<h2 class="post-title">{{ post.title | strip_html }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">{{ post.subtitle | strip_html }}</h3>
{% endif %}
</a>
# [Frostgrave]({{ site.url }}/projects/frostgrave)

<!-- Author and meta information -->
{% if post.author %}
<span>By <strong>{{ post.author | strip_html }}</strong></span>
{% endif %}
<p class="post-meta">
{% assign date_format = site.date_format | default: "%B %-d, %Y" %}
Posted on {{ post.date | date: date_format }}
</p>
Adventure in the frozen city! Join me as I start my journey with my wife plundering the ancient city of Felstad, now known as Frostgrave!

<!-- Post excerpt and read more link -->
<div class="post-entry">
{% assign excerpt_length = site.excerpt_length | default: 50 %}
{{ post.excerpt | strip_html | truncatewords: excerpt_length }}
{% assign excerpt_word_count = post.excerpt | number_of_words %}
{% if post.content != post.excerpt or excerpt_word_count > excerpt_length %}
<a href="{{ post.url | absolute_url }}" class="post-read-more">[Read&nbsp;More]</a>
{% endif %}
</div>
# [One Page Rules]({{ site.url }}/projects/one-page-rules)

<!-- Post tags -->
{% if site.feed_show_tags != false and post.tags.size > 0 %}
<div class="blog-tags">
<span>Tags:</span>
<!-- Inline list of tags -->
<ul class="d-inline list-inline" role="list">
{% for tag in post.tags %}
<li class="list-inline-item">
<a href="{{ '/tags' | absolute_url }}#{{- tag -}}">{{- tag -}}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</article>
</li>
{% endfor %}
</ul>
A popular Warhammer 40k alternative, One Page Rules seeks to be a mini agnostic grimdark tabletop battle game. Come check out my Dwarven Guild as it grows!

<!-- Pagination for OPR section -->
{% if paginator.total_pages > 1 %}
<ul class="pagination main-pager">
{% if paginator.previous_page %}
<li class="page-item previous">
<a class="page-link" href="{{ paginator.previous_page_path | absolute_url }}">
<i class="fas fa-arrow-left" alt="Newer Posts"></i>
<span class="d-none d-sm-inline-block">Newer Posts</span>
</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="page-item next">
<a class="page-link" href="{{ paginator.next_page_path | absolute_url }}">
<span class="d-none d-sm-inline-block">Older Posts</span>
<i class="fas fa-arrow-right" alt="Older Posts"></i>
</a>
</li>
{% endif %}
</ul>
{% endif %}
<!-- # [Warhammer 40k]({{ site.url }}/projects/Warhammer40k)
Yes, I thought it would be a good idea to add another huge tabletop game to my reiptoire. Cause I'm dumb. And, when my mom said she wanted to take me on a shopping spree at the LGS for my 40th, I wasn't going to turn down the Battle Sisters combat patrol... -->
Loading

0 comments on commit 949b4d1

Please sign in to comment.