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

search.html « _default « layouts - gitlab.com/rmaguiar/hugo-theme-color-your-world.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39a10d9a1e4bdb61a9786fa1e6b9a8786a2d825c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "main" }}

  <main class="list">

    {{ partial "search-form" . }}

    <h1>{{ .Title }}</h1>
    
    <section id="search-info">
      <!-- Info -->
    </section>

    <ul id="search-results" class="posts">
      <!-- x-js-template -->
    </ul>
    
    <script id=search-result-template type=text/x-js-template><li><a class=btn href='${link}' title='${title}${titleDate}'><p>${title}</p>${spanDate}</a></li></script>
  
  </main>

{{ end }}