From e182245d3205d929881f51da9b48d6c4ed97a682 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Thu, 8 Feb 2024 16:36:31 -0600 Subject: Commit inicial --- _layouts/archive.html | 23 ++++++++ _layouts/default.html | 18 +++++++ _layouts/page.html | 18 +++++++ _layouts/post.html | 142 ++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 201 insertions(+) create mode 100644 _layouts/archive.html create mode 100644 _layouts/default.html create mode 100644 _layouts/page.html create mode 100644 _layouts/post.html (limited to '_layouts') diff --git a/_layouts/archive.html b/_layouts/archive.html new file mode 100644 index 0000000..6412273 --- /dev/null +++ b/_layouts/archive.html @@ -0,0 +1,23 @@ +--- +layout: default +--- +
+
+ +
+

Posts in "{{ page.title | capitalize }}"

+
+ + {% include page_divider.html %} + +
+
    + {% for post in page.posts %} +
  • {{ post.title }}
  • + {% endfor %} +
+
+ +
+
+
diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..cc54f80 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,18 @@ + + + + {% include head.html %} + + + + {% include header.html %} + +
+ {{ content }} +
+ + {% include footer.html %} + + + + diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..42e894e --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,18 @@ +--- +layout: default +--- +
+
+ +
+

{{ page.title }}

+
+ + {% include page_divider.html %} + +
+ {{ content }} +
+ +
+
diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..a6861f5 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,142 @@ +--- +layout: default +--- +
+ +
+
+
+

{{ page.title }}

+

by {{ page.author }}

+
+
+
+ +
+ +{% unless page.cover %} {% include page_divider.html %} {% endunless %} + + + +
+ {{ content }} +
+ +{% if site.jekyll-archives %} +{% if page.tags.size > 0 %} +
+ Tags: {% for tag in page.tags %}{{ tag }}{% if forloop.last == false %}, {% endif %}{% endfor %} +
+{% endif %} +{% endif %} + +
+

Subscribe via RSS

+
+ + +{% if site.inter_post_navigation == true %} +
+ + {% if page.previous.url %} + + + + + + {{page.previous.title}} + + {% endif %} + + + {% if page.next.url %} + + {{page.next.title}} + + + + + + {% endif %} + +
+{% endif %} + +{% if site.disqus_shortname %} +{% unless page.disqus_disabled %} +
+
+ + + comments powered by Disqus +
+{% endunless %} +{% endif %} + +
+
-- cgit v1.2.3