29 lines
		
	
	
		
			1007 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1007 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="ru">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>Архив статей</title>
 | |
|     {% load static %}
 | |
|     <link rel="stylesheet" href="{% static 'index.css' %}">
 | |
|     <link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
 | |
| </head>
 | |
| <body>
 | |
|     <div class="header">
 | |
|         <img src="{% static 'logo.svg' %}" />
 | |
|         <h1>Всё про IT</h1>
 | |
|     </div>
 | |
|     <div class="archive">
 | |
|         {% for post in posts %}
 | |
|             <div class="one-post">
 | |
|                 <h2 class="post-title">{{ post.title }}</h2>
 | |
|                 <div class="article-info">
 | |
|                     <strong class="article-author">{{ post.author.first_name }}</strong>
 | |
|                     <div class="article-created-date">{{ post.created_date }}</div>
 | |
|                 </div>
 | |
|                 <p class="article-text">{{ post.get_excerpt }}</p>
 | |
|             </div>
 | |
|         {% endfor %}
 | |
|     </div>
 | |
| </body>
 | |
| </html> | 
