Sha256: 73dce6940aede98e82434b2c3b2bfc12fd228d5009ab6f75b134cca500e6e552

Contents?: true

Size: 1.75 KB

Versions: 2

Compression:

Stored size: 1.75 KB

Contents

---
layout: default
---
{% assign color = page.color | default: site.color %}
{% assign title = page.title | default: site.title %}
{% assign description = page.description | default: site.description %}

<div class="w-full mt-16 p-16 flex flex-col justify-center items-center select-none text-{{ color }}-50">
  <div class="w-3/4 py-4 text-center font-serif text-4xl">{{ title }}</div>
  <div class="w-2/3 py-1 text-center font-sans text-base">{{ description }}</div>
</div>

{% include article.html %}

<div class="mx-auto flex justify-between w-acg space-x-4">
  <a class="w-1/2 p-4 flex items-center rounded-lg shadow-xl flex-grow bg-{{ color }}-50 bg-opacity-75 {% unless page.next.id %}opacity-0{% endunless %}" {% if page.next.id %}href="{{ page.next.id | relative_url }}"{% endif %}>
    <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 flex-shrink-0 text-{{ color }}-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 15l-3-3m0 0l3-3m-3 3h8M3 12a9 9 0 1118 0 9 9 0 01-18 0z" /></svg>
    <span class="ml-4">{{ page.next.title | default: "" }}</span>
  </a>
  <a class="w-1/2 p-4 flex items-center flex-row-reverse rounded-lg shadow-xl flex-grow bg-{{ color }}-50 bg-opacity-75 {% unless page.previous.id %}opacity-0{% endunless %}" {% if page.previous.id %}href="{{ page.previous.id | relative_url }}"{% endif %}>
    <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 flex-shrink-0 text-{{ color }}-600" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z" /></svg>
    <span class="mr-4">{{ page.previous.title | default: "" }}</span>
  </a>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-acg-1.0.6 _layouts/post.html
jekyll-theme-acg-1.0.5 _layouts/post.html