Skip to content

Commit

Permalink
a buuuunch of not-prose classes needed
Browse files Browse the repository at this point in the history
  • Loading branch information
craigerskine committed Feb 16, 2024
1 parent c2c932e commit e48e100
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions _site/encyclopedias/equipment/index.njk
Expand Up @@ -14,7 +14,7 @@ eleventyNavigation:

<h2>Weapons</h2>

<ul class="my-16 md:(grid-(& cols-2) gap-x-4)">
<ul class="not-prose my-16 md:(grid-(& cols-2) gap-x-4)">
{%- for item in collections.weapons %}
<li class="pb-8">
{%- call heading.x(tag='h2',sub='Weapon',url='/encyclopedias/equipment/'+ item.data.page.fileSlug +'/',img='/_assets/img/encyclopedias/weapons/'+ item.data.page.fileSlug +'.png',alt=item.data.title) %}
Expand All @@ -36,7 +36,7 @@ eleventyNavigation:

<h2>Armor</h2>

<ul class="mt-16 md:(grid-(& cols-2) gap-x-4)">
<ul class="not-prose mt-16 md:(grid-(& cols-2) gap-x-4)">
{%- for item in collections.armor %}
<li class="pb-8">
{%- call heading.x(tag='h2',sub='Armor',url='/encyclopedias/equipment/'+ item.data.page.fileSlug +'/',img='/_assets/img/encyclopedias/armor/'+ item.data.page.fileSlug +'.png',alt=item.data.title) %}
Expand Down
2 changes: 1 addition & 1 deletion _site/encyclopedias/index.njk
Expand Up @@ -13,7 +13,7 @@ eleventyNavigation:
## Game Systems
{% endrenderTemplate %}

<ul class="mt-16 gap-x-4 md:(grid-(& cols-2))">
<ul class="not-prose mt-16 gap-x-4 md:(grid-(& cols-2))">
{%- for item in collections.all | eleventyNavigation('Encyclopedias') %}
<li class="pb-8">
{%- call heading.x(tag='h2',sub=item.sub,url=item.url,img=item.img,alt=item.title) %}
Expand Down
2 changes: 1 addition & 1 deletion _site/encyclopedias/monsters-pets/index.njk
Expand Up @@ -14,7 +14,7 @@ eleventyNavigation:

{%- set eggs = collections.egg -%}

<ul class="ml-0 md:(grid-(& cols-2) gap-x-4)">
<ul class="not-prose ml-0 md:(grid-(& cols-2) gap-x-4)">
{% for egg in eggs %}
<li class="pb-8">
{%- call heading.x(tag='h2',sub='Monster & Pet',url='/encyclopedias/monsters-pets/'+ egg.data.page.fileSlug +'/',img=egg.data.img) %}
Expand Down
2 changes: 1 addition & 1 deletion _site/encyclopedias/produce/index.njk
Expand Up @@ -13,7 +13,7 @@ eleventyNavigation:

{%- set colors = collections.color -%}

<ul class="ml-0 md:(grid-(& cols-2) gap-x-4)">
<ul class="not-prose ml-0 md:(grid-(& cols-2) gap-x-4)">
{% for color in colors %}
<li class="pb-8">
{%- call heading.x(tag='h2',sub=color.data.seed +' seed',url='/encyclopedias/produce/'+ color.data.page.fileSlug +'/',img=color.data.img) %}
Expand Down
2 changes: 1 addition & 1 deletion _site/encyclopedias/shops/index.njk
Expand Up @@ -28,7 +28,7 @@ eleventyNavigation:
Looking for a specific item for a Recipe? Can't seem to find that Topple Cotton? Check out the following tables to see which items are located at what Level Shop. There is also a list of the seeds and jewels available at the Bone Fortress and Bejeweled City.
{% endrenderTemplate %}

<ul class="m-0 mb-12 grid-(& cols-2) gap-4 md:(grid-cols-4)">
<ul class="not-prose m-0 mb-12 grid-(& cols-2) gap-4 md:(grid-cols-4)">
{%- for item in collections.shops %}
<li>
<p class="mb-1 pb-px border-(b black/10) font-bold">{{ item.data.title }}</p>
Expand Down
2 changes: 1 addition & 1 deletion _site/extras/index.njk
Expand Up @@ -22,7 +22,7 @@ eleventyNavigation:
</div>
{%- endmacro %}

<ul class="mb-6 grid-(& cols-1) gap-5 md:(grid-cols-3)">
<ul class="not-prose mb-6 grid-(& cols-1) gap-5 md:(grid-cols-3)">
{%- for item in collections.extras %}
<li>
<h2>
Expand Down
2 changes: 1 addition & 1 deletion _site/walkthrough/events/_index.njk
Expand Up @@ -17,7 +17,7 @@ permalink: 'walkthrough/events/'

{{ alert.x(label='Story Arcs',sub='The preceding icon designates a story arc. Some story arcs must be completed in order to trigger the final quest, which lets you finish the game.',ico='mdi:pound') }}

<ul class="ml-0 mb-10 text-xs grid-(& flow-row cols-1) gap-y-10 gap-x-5 md:(mb-0 text-base grid-cols-2)">
<ul class="not-prose ml-0 mb-10 text-xs grid-(& flow-row cols-1) gap-y-10 gap-x-5 md:(mb-0 text-base grid-cols-2)">
{%- for item in collections.events %}
{{ list.x(label=item.data.title,sub=item.data.story_arc,badge=loop.index,url='/walkthrough/events/'+item.data.page.fileSlug,tag=true) }}
{%- endfor %}
Expand Down
2 changes: 1 addition & 1 deletion _site/walkthrough/index.njk
Expand Up @@ -14,7 +14,7 @@ eleventyNavigation:
This walkthrough contains detailed instructions (with graphical maps of every land) on how to complete every single event in a single play-through as well as a re-imagined **'Round the Tree Again** map configuration from the [Map/Artifact Placement Guide](https://gamefaqs.gamespot.com/ps/256525-legend-of-mana/faqs/10037) at GameFaqs.
{% endrenderTemplate %}

<ul class="mt-16 gap-x-4 md:(grid-(& cols-2))">
<ul class="not-prose mt-16 gap-x-4 md:(grid-(& cols-2))">
{%- for item in collections.all | eleventyNavigation('Walkthrough') %}
<li class="pb-8">
{%- call heading.x(tag='h2',sub=item.sub,url=item.url,img=item.img,alt=item.title) %}
Expand Down
4 changes: 2 additions & 2 deletions _site/walkthrough/maps/index.njk
Expand Up @@ -41,7 +41,7 @@ If you are following the included [Walkthrough](/walkthrough/events/), you shoul

<div class="md:flex md:space-x-6">
<div class="mb-8 w-full flex-1">
<ul class="ml-0 grid-(& cols-1) gap-y-6 gap-x-4 sm:(grid-cols-2)">
<ul class="not-prose ml-0 grid-(& cols-1) gap-y-6 gap-x-4 sm:(grid-cols-2)">
{%- for item in collections.maps %}
{%- if loop.index <= 26 %}
{{ list.x(label=item.data.title,sub=item.data.artifact,badge=loop.index,url='#map-'+item.data.page.fileSlug,modal_img='walkthrough/maps/'+ item.data.page.fileSlug +'.png',modal_imgalt=item.data.title) }}
Expand All @@ -53,7 +53,7 @@ If you are following the included [Walkthrough](/walkthrough/events/), you shoul
{%- endfor -%}
</div>
<div class="flex-none">
<ul class="mx-auto mb-5 w-48 h-48 bg-cover text-black/75 font-bold inline-flex flex-wrap relative">
<ul class="not-prose mx-auto mb-5 w-48 h-48 bg-cover text-black/75 font-bold inline-flex flex-wrap relative">
<li class="w-8 h-8 flex items-center justify-center"></li>
<li class="w-8 h-8 flex items-center justify-center"></li>
<li class="w-8 h-8 flex items-center justify-center"></li>
Expand Down

0 comments on commit e48e100

Please sign in to comment.