mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
ba45da9d03
32356e4e Fix typo in header of shortcode-templates.md c8f1a2d2 Correct code example for index template function bfa6a55d Escape code fencing ff8b2f99 Fix typos in deployment with wercker tutorial 557c36e8 theme: Merge commit '7fbb4bed25001182bfeb91f79db0f0c1936582ee' 7fbb4bed Squashed 'themes/gohugoioTheme/' changes from 7dd8a302..ca53082d ce31cee0 Add "See Also" config 158cee1b Make the tags into keywords 61600be6 Add a note to the related section 49edb5a2 Relase 0.27.1 c9bbc001 releaser: Add release notes to /docs for release of 0.27.1 213c6c3b Add bugs poster 8b4590cd Add KeyCDN integration tutorial 2b277859 Add tutorial videos to several docs pages 950fef1f Update roadmap to link to the correct milestones page 496f5bf6 Rename relnotes d6f9378d Bump Netlify versions to 0.27 087fde7f Update 0.27 release notes 603f94ae docs: Document Related Content 3790f6a3 releaser: Bump versions for release of 0.27 0948868c releaser: Add release notes to /docs for release of 0.27 git-subtree-dir: docs git-subtree-split: 32356e4eabe357ae914f4d1d59e8ae31ce936723
52 lines
1.8 KiB
Markdown
52 lines
1.8 KiB
Markdown
---
|
|
title: .AddDate
|
|
description: Returns the time corresponding to adding the given number of years, months, and days passed to the function.
|
|
godocref: https://golang.org/pkg/time/#Time.AddDate
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: "functions"
|
|
keywords: [dates,time]
|
|
signature: [".AddDate YEARS MONTHS DAYS"]
|
|
workson: [times]
|
|
hugoversion:
|
|
relatedfuncs: [now]
|
|
deprecated: false
|
|
aliases: []
|
|
---
|
|
|
|
|
|
The `AddDate` function takes three arguments in logical order of `years`, `months`, and `days`.
|
|
|
|
## Example: Randomized Tweets from the Last 2 Years
|
|
|
|
Let's assume you have a file at `data/tweets.toml` that contains a list of Tweets to display on your site's homepage. The file is filled with `[[tweet]]` blocks; e.g.---
|
|
|
|
```
|
|
[[tweet]]
|
|
name = "Steve Francia"
|
|
twitter_handle = "@spf13"
|
|
quote = "I'm creator of Hugo. #metadocreference"
|
|
link = "https://twitter.com/spf13"
|
|
date = "2017-01-07T00:00:00Z"
|
|
```
|
|
|
|
Let's assume you want to grab Tweets from the last two years and present them in a random order. In conjunction with the [`where`](/functions/where/) and [`now`](/functions/now/) functions, you can limit our range to the last two years via `now.AddDate -2 0 0`, which represents a point in time 2 years, 0 days, and 0 hours before the time of your last site build.
|
|
|
|
{{< code file="partials/templates/random-tweets.html" download="tweets.html" >}}
|
|
{{ range where $.Site.Data.tweets.tweet "date" "ge" (now.AddDate -2 0 0) | shuffle }}
|
|
<div class="item">
|
|
<blockquote>
|
|
<p>
|
|
{{ .quote | safeHTML }}
|
|
</p>
|
|
— {{ .name }} ({{ .twitter_handle }}) <a href="{{ .link }}">
|
|
{{ dateFormat "January 2, 2006" .date }}
|
|
</a>
|
|
</blockquote>
|
|
</div>
|
|
{{ end }}
|
|
{{< /code >}}
|