Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.52 KB

TODO-jsctheme.md

File metadata and controls

37 lines (31 loc) · 1.52 KB

TODO jsctheme

Additional

  • Create the rest of the template file
    • archives.html // to display archives
    • period_archives.html // to display time-period archives
    • article.html // processed for each article
    • author.html // processed for each author
    • authors.html // must list all the authors
    • categories.html // must list all the categories
    • category.html // processed for each category
    • index.html // the index (list all the articles)
    • page.html // processed for each page
    • tag.html // processed for each tag
    • tags.html // must list all the tags. Can be a tag cloud.

Fixes

Layout

├── static │ ├── css │ └── images └── templates ├── archives.html // to display archives ├── period_archives.html // to display time-period archives ├── article.html // processed for each article ├── author.html // processed for each author ├── authors.html // must list all the authors ├── categories.html // must list all the categories ├── category.html // processed for each category ├── index.html // the index (list all the articles) ├── page.html // processed for each page ├── tag.html // processed for each tag └── tags.html // must list all the tags. Can be a tag cloud.