Welcome to mirror list, hosted at ThFree Co, Russian Federation.

summary.html « _default « layouts - github.com/lubang/hugo-hello-programmer-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9251e0ece9058f21817ff73dc3fca94914d98abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<div class="post">
  <div class="post-title">
    <a href="{{ .Permalink }}" title="{{ .Title }}">
      <img src="{{ "/images/post-title-icon.png" | relURL }}" />
      <div class="post-meta">
        <time>{{ .Date.Format "2006년 01월 02일 15시 04분" }}</time>
        <h1>{{ .Title }}</h1>
      </div>
    </a>
  </div>
  {{ if .Params.cover }}
  <div class="cover-image">
    <a href="{{ .Permalink }}" title="{{ .Title }}">
      <img src="{{ .Params.cover }}" />
    </a>
  </div>
  {{ end }}
  <div>
    {{ .Summary }}
    {{ if .Truncated }}
    <a href="{{ .RelPermalink }}" class="summary-more">더보기</a>
    {{ end }}
  </div>
</div>