# Sub-parts Use the Sub-parts plugin to break a very long article in multiple parts, without polluting the timeline with lots of small articles. Sub-parts are removed from timelines and categories but remain in tag and author pages. ## Usage Article sub-parts have a compound slug with the slug of the parent, two hyphens (`--`), and some identifier. For example, if an article has the slug `karate`, then an article with the slug `karate--medals` would be a sub-part. This convention is very convenient if the slug is derived from the filename. For example, define the filename metadata as follows: FILENAME_METADATA = '(?P(?P\d{4}-\d{2}-\d{2})-[^.]+) Then, it is enough to name the files correctly. In the following example, the first Markdown article has two sub-parts: ./content/blog/2015-03-21-karate.md ./content/blog/2015-03-21-karate--attendees.md ./content/blog/2015-03-21-karate--medals.md This plugin provides the following variables to your templates and modifies the titles of sub-part articles: `article.subparts`: for a parent article with sub-parts, the list of sub-part articles `article.subpart_of`: for a sub-part article, the parent article `article.subtitle`: the original title of the sub-part article `article.title`: compound title with the a comma and the title of the parent `article.subphotos`: for parent articles with sub-parts that have a gallery generated by the _Photos_ plugin, the total number of gallery photos in all sub-parts For example, add the following to the template `article.html`: {% if article.subparts %}

Parts

{% endif %} {% if article.subpart_of %}

Parts

This article is part of {{ article.subpart_of.title }}:

{% endif %} ## Live sites using this plugin [pxquim.pt](http://pxquim.pt/) uses sub-parts and the _Photos_ plugin to publish photo galleries with thousands of photos. The Sub-parts plugin breaks the photo galleries into manageable chunks, possibly with different tags and authors. [pxquim.com](http://pxquim.com/) uses Sub-parts to cover conferences, where it makes sense to have a sub-part for each speaker. ## What is the difference between Sub-part and Series? Series: Connects separate articles, but never removes articles from timelines. Series is suited to connecting related articles that are published over time, e.g., a ten-part article written over several months, or a large festival with several independent performances. Sub-part: Articles that are subordinate to each other, hiding sub-articles from timelines. Sub-parts is suited to relating articles clustered together in time, where the sub-articles need the context of their parent article to be fully understood. For example, a 20-part photo gallery of a karate competition, or coverage of a conference.