mirror of
				https://github.com/balkian/balkian.github.com.git
				synced 2025-10-30 23:28:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			891 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			891 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| {% block content_title %}
 | |
| {{ article.title }}
 | |
| {% endblock %}
 | |
| {% block content %}
 | |
| <div class="postnav">
 | |
|     {% if article.prev_article %}
 | |
|   <span class="previouspost"><i class="fa fa-chevron-left"></i> <a href="{{ article.prev_article.url }}">{{ article.prev_article.title }}</a></span>
 | |
|   {% endif %}
 | |
|   {% if article.next_article %}
 | |
|   <span class='nextpost'><a href="{{ SITE_URL }}/{{ article.next_article.url }}">{{ article.next_article.title }}</a> <i class="fa fa-chevron-right"></i></span>
 | |
|   {%endif%}
 | |
| </div>
 | |
| <div class="posthead">
 | |
|   <h2 class="title">{{ article.title }}</h2>
 | |
|   <span class="meta date">{{ article.date | date_to_string }}</span>
 | |
|   {% for c in article.tags %}
 | |
|       <a class="tag" href="/tag/{{ c }}.html"><span class="label label-default">{{ c }}</span></a>
 | |
|   {% endfor %}
 | |
| </div>
 | |
| 
 | |
| <div class="post">
 | |
|  {{ article.content }}
 | |
| </div>
 | |
| {% endblock %}
 |