forked from Hexlet/hexletguides.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
title: Гайды и статьи для программистов
layout: default
background: '/img/bg-index.jpg'
---
<!-- Home Intro
================================================== -->
{% if page.url == "/" %}
<div class="rounded hero p-4 p-lg-5 mb-5">
<div class="row mx-lg-5">
<div class="col-md-8">
<h1 class="display-5 fw-bold">Статьи о технологиях, инструментах и практиках</h1>
<p class="lead">Зачем нужен Docker? Что такое кодировки, DNS, Webpack? Как печатать вслепую? И многое другое</p>
<!-- <a href="{{site.baseurl}}/about" class="btn btn-dark text-white px-5 btn-lg">About me</a> -->
</div>
<div class="col-md-4 d-none d-md-block">
<img class="intro" height="500" src="{{ "/assets/images/intro.svg" | relative_url }}">
</div>
</div>
</div>
{% endif %}
<div class="row mx-lg-5">
{% assign published_posts = site.posts | where: 'hidden', empty %}
{% for post in published_posts %}
<div class="col-md-6 mb-5">
{% include postbox.html %}
</div>
{% endfor %}
</div>
<!-- Pagination -->
{% comment %} <div class="bottompagination"> {% endcomment %}
{% comment %} <span class="navigation" role="navigation"> {% endcomment %}
{% comment %} {% include pagination.html %} {% endcomment %}
{% comment %} </span> {% endcomment %}
{% comment %} </div> {% endcomment %}