diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-26 13:24:35 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-26 13:24:45 +0300 |
commit | 467a6d637228601fb15456bd067c1bd28ba9593b (patch) | |
tree | fe608da9dba0a3971652f18ec096e8b1753e66ae /index.html | |
parent | bump jekyll-theme (diff) | |
download | egor-tensin.github.io-467a6d637228601fb15456bd067c1bd28ba9593b.tar.gz egor-tensin.github.io-467a6d637228601fb15456bd067c1bd28ba9593b.zip |
if there's no project name, don't bother
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,7 +35,9 @@ projects: </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 %} |