登录
首页 >  Golang >  Go问答

Range 函数增加了附加输出到我的模板

来源:stackoverflow

时间:2024-03-06 08:06:26 497浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《Range 函数增加了附加输出到我的模板》,聊聊,我们一起来看看吧!

问题内容

我正在点击此链接来了解如何创建档案页面。我使用的hugo-xmin 主题稍作修改。

据我了解,range 会浏览页面并应该将其打印出来。但是,我还得到了一个额外的 0001 。我不明白为什么。我还是 hugo 和 go 的初学者。

我的输出(红色圆圈部分不是我想要的)

我的archives.html

{{ partial "header.html" . }}

<div class="article-meta">
<h1><span class="title">{{ .title | markdownify }}</span></h1>
{{ with .params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
{{ if (gt .params.date 0) }}<h2 class="date">{{ .date.format "2006/01/02" }}</h2>{{ end     }}
</div>



<main class="content" role="main">
    <div class="inner">
{{ range (.site.regularpages.groupbydate "2006") }}
<h3>{{ .key }}</h3>
<ul>
  {{ range (where .pages "type" "post") }}
  <li>
    <span class="date">{{ .date.format "2006/01/02" }}</span>
    <a href="{{ .relpermalink }}">{{ .title }}</a>
  </li>
  {{ end }}
</ul>
{{ end }}
</div>
</main>


{{ partial "footer.html" . }}

我的archives.md

---
title: "archives"
layout: "archives"
draft: false
---

this is archives

我的目录结构

.
├── archetypes
│   └── default.md
├── config.toml
├── content
│   ├── about.md
│   ├── archives.md
│   ├── _index.md
│   ├── post
│   │   ├── first_post.md
│   │   ├── sample_code.md
│   │   └── test_math.md
│   └── reading.md
├── data
├── layouts
├── static
└── themes
    └── mytheme
        ├── archetypes
        │   └── default.md
        ├── layouts
        │   ├── 404.html
        │   ├── archives.html
        │   ├── _default
        │   │   ├── archives.html
        │   │   ├── list.html
        │   │   ├── single.html
        │   │   └── terms.html
        │   ├── index.html
        │   └── partials
        │       ├── foot_custom.html
        │       ├── footer.html
        │       ├── head_custom.html
        │       └── header.html
        ├── LICENSE.md
        ├── static
        │   ├── css
        │   │   ├── fonts.css
        │   │   └── style.css
        │   └── js
        └── theme.toml

15 directories, 25 files

解决方案


hugo-lithium 的帮助下,我将 archives.html 更改为以下内容。它现在适用于我的用例。但我仍然不明白为什么0001首先出现。所以我现在不会将我的答案标记为正确。

{{ partial "header.html" . }}

<div class="article-meta">
<h1><span class="title">{{ .Title | markdownify }}</span></h1>
{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
{{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end     }}
</div>


{{ range (where .Site.RegularPages "Section" "!=" "").GroupByDate "2006" }}
  <h2>{{ .Key }}</h2>
  <ul>
  {{ range .Pages }}
  <li>
    <span class="date">{{ .Date.Format "2006/02/02" }}</span>
    <a href="{{ .RelPermalink }}">{{ .Title }}</a>
  </li>
  {{ end }}
  </ul>
{{ end }}



{{ partial "footer.html" . }}

今天关于《Range 函数增加了附加输出到我的模板》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>