beautify portfolio

This commit is contained in:
horhik 2021-06-06 22:05:06 +03:00
parent 387009ead3
commit bc2a8990be
6 changed files with 13 additions and 13 deletions

View File

@ -28,6 +28,7 @@
.page-link {
line-height: $ascii-line-height-mobile;
white-space: pre-line;
margin-bottom: 5px;
}
.page-list{

View File

@ -1,4 +0,0 @@
---
title: "Blog"
date: 2021-06-06
---

View File

@ -5,7 +5,7 @@
</div>
<div>
<ul class="recent-list">
{{ range first 5 (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}
{{ range first 5 (where .Site.Pages "Type" "post") }}
<li class="recent-block recent-block--right">
<a href="{{ .RelPermalink }}">{{ .Title }}</a> <br>
<time class="recent-block__time">{{ .Date.Format "02.01.2006" }}</time>

View File

@ -21,10 +21,10 @@
{{ partial "header" . }}
<main id="main">
<div>
<ul class="portfolio">
{{ range .Pages }}
{{ .Render "summary"}}
{{ end }}
</div>
</ul>
</main>
{{ partial "footer" . }}

View File

@ -1,9 +1,11 @@
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="{{ .Permalink }}">{{ .Title }}</a>
</div>
<li class="project">
<h2>
<a class="project-name" href="{{ .Permalink }}">{{ .Title }}</a>
</h2>
<p class="project-description">{{.Description}}</p>
<time class="recent-block__time">{{ .Date.Format "02.01.2006 15:04" }}</time>
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</article>
</li>

View File

@ -133,7 +133,8 @@ p code, quote code, q code {
@media screen and (max-width: 420px) {
.page-link {
line-height: 1.112em;
white-space: pre-line; }
white-space: pre-line;
margin-bottom: 5px; }
.page-list {
flex-direction: column;
align-items: center;