reworked images, checkpointing content

This commit is contained in:
evilchili
2024-11-20 00:07:53 -08:00
parent 6d40333142
commit d37701cf3a
61 changed files with 809 additions and 31 deletions
@@ -879,6 +879,9 @@ a.disabled:hover {
display: block;
clear: both;
}
div.location h5 {
text-align: left;
}
div.location:hover, div.location:active {
background: rgba(244,241,232, 0.5);
cursor: pointer;
@@ -1,17 +1,29 @@
{% set locations = articles | selectattr('category', 'in', ['locations']) | list | sort(attribute=date) %}
<img src='/images/dewa_qasos.png' class='key_image' alt="Hand-drawn map of the Dewa Q'Asos">
<div class='box curled'>
<h2>A Hopper's Guide To<br>The Dewa Q'Asos</h2>
<h3>Cites, Towns, and Settlements</h3>
<div class='thumbnail'><a href='/images/overland/dewa_qasos.png'><img src='/images/overland/dewa_qasos_thumb.png' alt="A hand-drawn map of the Dewa Q'Asos region" /></a></div>
<span class="summary">
The Dewa Q'Asos region between the Hoard's Vault mountain range in the north and the great scar of Tano's Edge
to the south is home to a managerie of peoples. Settlements range from lawless frontier towns to the
mighty city-state of Gazach Noch. Traveling the roads may be inherently less risky than the open desert, but
danger and intrigue await even the hardiest of traveller. Mind your manners, and keep your spells to yourself;
the law is mostly whatever you can get away with.
<br>
<p>
Besides these settlements, as your adventure progresses you may also encounter the settlements of those who call the Sahwat Desert their
home; those locations are also included below.
</p>
</span>
{% for location in locations if 'region' not in location.tags %}
<div class='location' onclick="window.location.href='{{ SITEURL }}/{{ location.url }}'">
<h4><a class='title' href="{{ SITEURL }}/{{ location.url }}" rel="bookmark" title="{{location.title|striptags}}">{{ location.title }}</a></h4>
<div class='thumbnail'><a href='{{location.thumbnail}}'><img src='{{ location.thumbnail }}' alt='{{location.title}}'></a></div>
<h5><a class='title' href="{{ SITEURL }}/{{ location.url }}" rel="bookmark" title="{{location.title|striptags}}">{{ location.title }}</a></h5>
<span class="summary"> {{ location.summary }} </span>
</div>
{% endfor %}
<br>
<h3>The Sahwat Desert</h3>
<div class='thumbnail'><a href='/images/overland_map.png'><img src='/images/overland_map.png' alt="The known regions of the Sawhat Desert" /></a></div>
<div class='thumbnail'><a href='/images/overland/sahwat_desert_region_map_occluded.png'><img src='/images/overland/sahwat_occluded_thumb.png' alt="The known regions of the Sawhat Desert" /></a></div>
<span class='summary'>
The Sahwat Desert is a vast expanse covering thousands of miles of the Dewa Q'Asos region in southwestern Vosh, from
Tano's Edge to the Sea of Storms. It is comprised of a multitude of regions each with its own geography, weather,
@@ -25,8 +37,7 @@
{% for location in locations if 'region' in location.tags %}
<div class='location' onclick="window.location.href='{{ SITEURL }}/{{ location.url }}'">
<h4><a class='title' href="{{ SITEURL }}/{{ location.url }}" rel="bookmark" title="{{location.title|striptags}}">{{ location.title }}</a></h4>
<div class='thumbnail'><img src='{{ location.thumbnail }}' alt='{{location.title}}'></a></div>
<h5><a class='title' href="{{ SITEURL }}/{{ location.url }}" rel="bookmark" title="{{location.title|striptags}}">{{ location.title }}</a></h5>
<span class="summary"> {{ location.summary }} </span>
</div>
{% endfor %}