Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

As blogger I want to be able to categorize my posts, so that my posts be organized. #5

Open
guilhermecomum opened this issue Aug 11, 2020 · 1 comment
Milestone

Comments

@guilhermecomum
Copy link
Collaborator

No description provided.

@guilhermecomum guilhermecomum added this to the Release 1 milestone Aug 26, 2020
@clarete
Copy link
Collaborator

clarete commented Jan 3, 2021

There are a few things we need in order to get this working:

  1. the code for generating the pages for each category. the snippet below will generate a directory for each category name with an index.html file within it:

    (weblorg-route
     :name "categories"
     :input-pattern "posts/*.org"
     :input-aggregate #'weblorg-input-aggregate-by-category ;; also look at weblorg-input-aggregate-by-category-desc
     :template "category.html"
     :output "blog/{{ name }}/index.html"
     :url "/blog/{{ name }}")
    ;; the template will link to the `posts` route with `url_for`.
    (weblorg-route
     :name "posts"
     :input-pattern "posts/*.org"
     :template "post.html"
     :output "blog/{{ slug }}.html"
     :url "/blog/{{ slug }}.html")
  2. The category.html template present in the templates path (we don't have any themes shipping this file yet 😢)

    {% extends "layout.html" %}
    {% block body %}
      <div class="title"><h1>{{ category.name }}</h1></div>
      <div class="content">
        <ul>
          {% for post in category.posts %}
            <li>
              <span class="pubdate">{{ post.date }}</span>
              <a href="{{ url_for("posts", slug=post.slug) }}">{{ post.title }}</a>
            </li>
          {% endfor %}
        </ul>
      </div>
    {% endblock %}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants