29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								---
							 | 
						||
| 
								 | 
							
								layout: layouts/base.njk
							 | 
						||
| 
								 | 
							
								---
							 | 
						||
| 
								 | 
							
								{# Only include the syntax highlighter CSS on blog posts, included with the CSS per-page bundle #}
							 | 
						||
| 
								 | 
							
								<style>{% include "node_modules/prismjs/themes/prism-okaidia.css" %}</style>
							 | 
						||
| 
								 | 
							
								<style>{% include "css/prism-diff.css" %}</style>
							 | 
						||
| 
								 | 
							
								<h1>{{ title }}</h1>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								<ul class="post-metadata">
							 | 
						||
| 
								 | 
							
									<li><time datetime="{{ page.date | htmlDateString }}">{{ page.date | readableDate }}</time></li>
							 | 
						||
| 
								 | 
							
									{%- for tag in tags | filterTagList %}
							 | 
						||
| 
								 | 
							
									{%- set tagUrl %}/tags/{{ tag | slugify }}/{% endset %}
							 | 
						||
| 
								 | 
							
									<li><a href="{{ tagUrl }}" class="post-tag">{{ tag }}</a>{%- if not loop.last %}, {% endif %}</li>
							 | 
						||
| 
								 | 
							
									{%- endfor %}
							 | 
						||
| 
								 | 
							
								</ul>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{{ content | safe }}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{%- if collections.posts %}
							 | 
						||
| 
								 | 
							
								{%- set previousPost = collections.posts | getPreviousCollectionItem %}
							 | 
						||
| 
								 | 
							
								{%- set nextPost = collections.posts | getNextCollectionItem %}
							 | 
						||
| 
								 | 
							
								{%- if nextPost or previousPost %}
							 | 
						||
| 
								 | 
							
								<ul class="links-nextprev">
							 | 
						||
| 
								 | 
							
									{%- if previousPost %}<li class="links-nextprev-prev">← Previous<br> <a href="{{ previousPost.url }}">{{ previousPost.data.title }}</a></li>{% endif %}
							 | 
						||
| 
								 | 
							
									{%- if nextPost %}<li class="links-nextprev-next">Next →<br><a href="{{ nextPost.url }}">{{ nextPost.data.title }}</a></li>{% endif %}
							 | 
						||
| 
								 | 
							
								</ul>
							 | 
						||
| 
								 | 
							
								{%- endif %}
							 | 
						||
| 
								 | 
							
								{%- endif %}
							 |