| 
									
										
										
										
											2023-03-07 01:09:52 +11:00
										 |  |  | {% extends "base.html" %} | 
					
						
							|  |  |  | {% block html_lang %}{{ article.lang }}{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block title %}{{ SITENAME }} - {{ article.title|striptags  }}{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block head %} | 
					
						
							|  |  |  |   {{ super() }} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {% import 'translations.html' as translations with context %} | 
					
						
							|  |  |  |   {% if translations.entry_hreflang(article) %} | 
					
						
							|  |  |  |     {{ translations.entry_hreflang(article) }} | 
					
						
							|  |  |  |   {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {% if article.description %} | 
					
						
							|  |  |  |     <meta name="description" content="{{article.description}}" /> | 
					
						
							|  |  |  |   {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {% for tag in article.tags %} | 
					
						
							|  |  |  |     <meta name="tags" content="{{tag}}" /> | 
					
						
							|  |  |  |   {% endfor %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %} | 
					
						
							|  |  |  |   <header> | 
					
						
							| 
									
										
										
										
											2023-04-20 11:29:53 +10:00
										 |  |  |     <h1 class="page-title entry-title">{{ article.title }}</h1> | 
					
						
							| 
									
										
										
										
											2023-03-07 01:09:52 +11:00
										 |  |  |  {% import 'translations.html' as translations with context %} | 
					
						
							|  |  |  |  {{ translations.translations_for(article) }} | 
					
						
							|  |  |  |   </header> | 
					
						
							|  |  |  |   <footer class="post-info"> | 
					
						
							|  |  |  |     <time class="published" datetime="{{ article.date.isoformat() }}"> | 
					
						
							|  |  |  |       {{ article.locale_date }} | 
					
						
							|  |  |  |     </time> | 
					
						
							|  |  |  |     {% if article.modified %} | 
					
						
							|  |  |  |     <time class="modified" datetime="{{ article.modified.isoformat() }}"> | 
					
						
							|  |  |  |       {{ article.locale_modified }} | 
					
						
							|  |  |  |     </time> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |     {% if article.authors %} | 
					
						
							|  |  |  |     <address class="vcard author"> | 
					
						
							|  |  |  |       By {% for author in article.authors %} | 
					
						
							|  |  |  |           <a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> | 
					
						
							|  |  |  |         {% endfor %} | 
					
						
							|  |  |  |     </address> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |     {% if article.category %} | 
					
						
							|  |  |  |     <div class="category"> | 
					
						
							|  |  |  |         Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |     {% if article.tags %} | 
					
						
							|  |  |  |     <div class="tags"> | 
					
						
							|  |  |  |         Tags: | 
					
						
							|  |  |  |         {% for tag in article.tags %} | 
					
						
							|  |  |  |             <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> | 
					
						
							|  |  |  |         {% endfor %} | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |   </footer><!-- /.post-info --> | 
					
						
							| 
									
										
										
										
											2023-04-20 16:07:56 +10:00
										 |  |  |   <article style="max-width: 45rem"> | 
					
						
							| 
									
										
										
										
											2023-03-07 01:09:52 +11:00
										 |  |  |     {{ article.content }} | 
					
						
							|  |  |  |   </article> | 
					
						
							|  |  |  | {% endblock %} |