mirror of
				https://github.com/valentineus/popov.link.git
				synced 2025-11-04 06:49:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			988 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			988 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
---
 | 
						|
layout: default
 | 
						|
title: Home
 | 
						|
---
 | 
						|
 | 
						|
<div class="catalogue">
 | 
						|
    {% for post in paginator.posts %}
 | 
						|
        <a href="{{ post.url | prepend: site.baseurl }}" class="catalogue-item">
 | 
						|
            <div>
 | 
						|
                <time datetime="{{ post.date }}" class="catalogue-time">{{ post.date | date: "%B %d, %Y" }}</time>
 | 
						|
                <h1 class="catalogue-title">{{ post.title }}</h1>
 | 
						|
                <div class="catalogue-line"></div>
 | 
						|
 | 
						|
                <p>
 | 
						|
                    {{ post.content | truncatewords: 30 | strip_html }}
 | 
						|
                </p>
 | 
						|
            </div>
 | 
						|
        </a>
 | 
						|
    {% endfor %}
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="pagination">
 | 
						|
    {% if paginator.previous_page %}
 | 
						|
        <a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="left arrow">←</a>
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
    {% if paginator.next_page %}
 | 
						|
        <a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="right arrow">→</a>
 | 
						|
    {% endif %}
 | 
						|
 | 
						|
    <span>{{ paginator.page }}</span>
 | 
						|
</div>
 |