You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							27 lines
						
					
					
						
							509 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							27 lines
						
					
					
						
							509 B
						
					
					
				
								{{ define "main" }}
							 | 
						|
								
							 | 
						|
								    <main>
							 | 
						|
								        {{ partial "article-meta.html" . }}
							 | 
						|
								
							 | 
						|
								        {{ if .Params.toc }}
							 | 
						|
								            {{ .TableOfContents }}
							 | 
						|
								        {{ end }}
							 | 
						|
								
							 | 
						|
								        {{ .Content }}
							 | 
						|
								    </main>
							 | 
						|
								
							 | 
						|
								        {{ if gt (len .Data.Pages) 0 }}
							 | 
						|
								
							 | 
						|
								        	<section>
							 | 
						|
								            	<h2>Devlogs:</h2>
							 | 
						|
								        	</section>
							 | 
						|
								
							 | 
						|
								            <section class="article-list">
							 | 
						|
								        	    {{ range .Data.Pages }}
							 | 
						|
								        	    	{{ partial "article.html" . }}
							 | 
						|
								        	    {{ end }}
							 | 
						|
								            </section>
							 | 
						|
								
							 | 
						|
								        {{ end }}
							 | 
						|
								
							 | 
						|
								{{ end }}
							 | 
						|
								
							 |