-
Notifications
You must be signed in to change notification settings - Fork 44.2k
Customizing the content on your site
rjzupkoii edited this page Jun 8, 2024
·
5 revisions
By default Academic Pages provides five different types of content that are used to generate pages:
-
Blog Posts - found in
_posts
, these are structed as Markdown files (*.md
) and support tagging by categorytags
by default. -
Portfolio - found in
_portfolio
, these can either be Markdown files (*.md
) and parsed as such, or HTML files (*.html
) where everything below the heading with be parsed as HTML. These support grouping bycollection
by default. -
Publications - found in
_publications
, these are intended to list publications (e.g., manuscripts, books, etc.) along citation information, abstracts, and downloads if desired. -
Talks - found in
_talks
, these are intended to list talks given in reverse chronological order (i.e., newest to oldest). -
Teaching - found in
_teaching
, these are intended to list classes talked in reverse chronological order (i.e., newest to oldest).
By default order of publications is controlled by the following in _pages/publications.md
{% for post in site.publications reversed %}
{% include archive-single.html %}
{% endfor %}
The reversed
keyword results in the entries being listed in reverse chronological order (i.e., newest to oldest), removing the keyword will result in chronological order (i.e., oldest to newest)