jekyll-theme-doctored 0.3.3 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/palettes/main.amber.html +1 -1
- data/_includes/palettes/main.blue.html +1 -1
- data/_includes/palettes/main.cyan.html +1 -1
- data/_includes/palettes/main.emerald.html +1 -1
- data/_includes/palettes/main.fuchsia.html +1 -1
- data/_includes/palettes/main.gray.html +1 -1
- data/_includes/palettes/main.green.html +1 -1
- data/_includes/palettes/main.indigo.html +1 -1
- data/_includes/palettes/main.lime.html +1 -1
- data/_includes/palettes/main.neutral.html +1 -1
- data/_includes/palettes/main.orange.html +1 -1
- data/_includes/palettes/main.pink.html +1 -1
- data/_includes/palettes/main.purple.html +1 -1
- data/_includes/palettes/main.red.html +1 -1
- data/_includes/palettes/main.rose.html +1 -1
- data/_includes/palettes/main.sky.html +1 -1
- data/_includes/palettes/main.slate.html +1 -1
- data/_includes/palettes/main.stone.html +1 -1
- data/_includes/palettes/main.teal.html +1 -1
- data/_includes/palettes/main.violet.html +1 -1
- data/_includes/palettes/main.yellow.html +1 -1
- data/_includes/palettes/main.zinc.html +1 -1
- data/_includes/post-card.html +1 -1
- data/_layouts/default.html +1 -1
- metadata +1 -1
data/_includes/post-card.html
CHANGED
|
@@ -22,7 +22,7 @@ adjust based on kind so the same template can render posts, projects, pages, etc
|
|
|
22
22
|
<div class="flex flex-row items-stretch gap-3 w-full px-3 py-2">
|
|
23
23
|
{%- if (kind == 'project' or kind == 'projects') and entry.image -%}
|
|
24
24
|
<div
|
|
25
|
-
class="w-36 h-24 min-w-36 self-center overflow-hidden rounded-md border border-primary-500/40 sm:w-48 sm:h-36 sm:min-w-
|
|
25
|
+
class="w-36 h-24 min-w-36 self-center overflow-hidden rounded-md border border-primary-500/40 sm:w-48 sm:h-36 sm:min-w-44">
|
|
26
26
|
<a href="{{ entry.url | relative_url }}" class="no-underline block w-full h-full">
|
|
27
27
|
<img src="{{ entry.image | relative_url }}" alt="{{ entry.title }} image"
|
|
28
28
|
class="w-full h-full object-cover" loading="lazy">
|
data/_layouts/default.html
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
</main>
|
|
19
19
|
<footer
|
|
20
20
|
class="w-full dark:text-primary-400 text-primary-800 dark:bg-primary-950 bg-primary-100 py-6 pt-3 flex flex-col items-center">
|
|
21
|
-
<div class="max-w-[
|
|
21
|
+
<div class="max-w-[80ch] w-full border-top-3 border-dotted border-primary-500 pt-3 dark:border-none"
|
|
22
22
|
style="border-top-width: 2px;">
|
|
23
23
|
{% include foot.html %}
|
|
24
24
|
</div>
|