aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-04-25 11:56:43 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-04-25 11:56:43 +0200
commit553a8d850bcabf45157a9e184091f9aff1292ee6 (patch)
tree8e7c3190211db0397b53db2bd6e2d05183a6d8ed
parentremove descriptions from "links" (diff)
downloadegor-tensin.github.io-553a8d850bcabf45157a9e184091f9aff1292ee6.tar.gz
egor-tensin.github.io-553a8d850bcabf45157a9e184091f9aff1292ee6.zip
switch links & projects columns
-rw-r--r--index.html45
1 files changed, 23 insertions, 22 deletions
diff --git a/index.html b/index.html
index d38be5c..82c4cc5 100644
--- a/index.html
+++ b/index.html
@@ -28,28 +28,6 @@ projects:
<div class="row">
-{% if page.projects %}
- <div class="col-sm-6 col-md-5 col-lg-4">
-
- <div class="list-group">
- <div class="list-group-item disabled">
- <h4 class="list-group-item-heading">projects</h4>
- </div>
- {% for project in page.projects %}
- <a class="list-group-item" href="{{ project.url }}">
- {% if project.name %}
- <h4 class="list-group-item-heading">{{ project.name }}</h4>
- {% endif %}
- {% if project.description %}
- <p class="list-group-item-text">{{ project.description }}</p>
- {% endif %}
- </a>
- {% endfor %}
- </div>
-
- </div>
-{% endif %}
-
<div class="col-sm-5 col-md-4 col-lg-3">
<div class="list-group">
@@ -81,4 +59,27 @@ projects:
</div>
</div>
+
+{% if page.projects %}
+ <div class="col-sm-6 col-md-5 col-lg-4">
+
+ <div class="list-group">
+ <div class="list-group-item disabled">
+ <h4 class="list-group-item-heading">projects</h4>
+ </div>
+ {% for project in page.projects %}
+ <a class="list-group-item" href="{{ project.url }}">
+ {% if project.name %}
+ <h4 class="list-group-item-heading">{{ project.name }}</h4>
+ {% endif %}
+ {% if project.description %}
+ <p class="list-group-item-text">{{ project.description }}</p>
+ {% endif %}
+ </a>
+ {% endfor %}
+ </div>
+
+ </div>
+{% endif %}
+
</div>