Skip to content

Commit

Permalink
Merge branch 'master' into feature/add-favicon-files-info-to-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderdavide committed May 25, 2021
2 parents 9201289 + a49c697 commit 9075350
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 7 deletions.
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ Add your favicons to `static/favicons`. Anatole currently employs following favi

### Copyright

By default, the copyright will show the current year, but you can change this by configuring the `copyright` parameter.
By default, the copyright will show the authors name followed by the current year, but you can change this by configuring the `copyright` parameter. If this method is used, the string `{{ YEAR }}` will be replaced with the current year during site generation.

```toml
copyright = "2020-2021"
copyright = "2020-{{ YEAR }}"
```

### Navigation items
Expand Down Expand Up @@ -576,6 +576,29 @@ title = "e-mail"
url = "mailto:[email protected]"
```

### RSS

Hugo natively supports RSS. To generate a feed for a given page, append `index.xml` to the page URL.

Note that the RSS feed at the base of your website will include all of the pages on your website. To only include posts in your RSS feed, generate the feed within the `posts/` subdirectory with the URL `posts/index.xml`.

To only generate an RSS feed for your posts, disable the RSS output for the other page types:

```toml
[outputs]
home = ["HTML"]
section = ["HTML", "RSS"]
taxonomy = ["HTML"]
term = ["HTML"]
```

By default, the RSS feed contains a brief summary of each page. If you prefer to show the entire contents for each page, then use the `rssFullContent` parameter:

```toml
[params]
rssFullContent = true
```

## License

Anatole is licensed under the [MIT license](https://github.com/lxndrblz/anatole/blob/master/LICENSE).
Expand Down
3 changes: 2 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ a:active {
.post .post-thumbnail {
width: 100%;
padding-bottom: 1em;
box-shadow: #000000;
box-shadow: #000;
border-radius: 0.5em;
overflow: hidden;
transition: box-shadow .3s ease;
Expand Down Expand Up @@ -920,6 +920,7 @@ print {

.sidebar .logo-title .title img {
width: 100px;
height: 100px;
}

.sidebar .logo-title .title h3 {
Expand Down
3 changes: 2 additions & 1 deletion assets/css/style.rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ a:active {
.post .post-thumbnail {
width: 100%;
padding-bottom: 1em;
box-shadow: #000000;
box-shadow: #000;
border-radius: 0.5em;
overflow: hidden;
transition: box-shadow .3s ease;
Expand Down Expand Up @@ -919,6 +919,7 @@ print {

.sidebar .logo-title .title img {
width: 100px;
height: 100px;
}

.sidebar .logo-title .title h3 {
Expand Down
43 changes: 43 additions & 0 deletions layouts/_default/rss.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{{- $pctx := . -}}
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
{{- $pages := slice -}}
{{- if or $.IsHome $.IsSection -}}
{{- $pages = $pctx.RegularPages -}}
{{- else -}}
{{- $pages = $pctx.Pages -}}
{{- end -}}
{{- $limit := .Site.Config.Services.RSS.Limit -}}
{{- if ge $limit 1 -}}
{{- $pages = $pages | first $limit -}}
{{- end -}}
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
<link>{{ .Permalink }}</link>
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
<language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
{{- with .OutputFormats.Get "RSS" -}}
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
{{- end -}}
{{ range $pages }}
<item>
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
<guid>{{ .Permalink }}</guid>
{{ if eq .Site.Params.rssFullContent true }}
<description>{{ .Content | html }}</description>
{{ else }}
<description>{{ .Summary | html }}</description>
{{ end }}
</item>
{{ end }}
</channel>
</rss>
6 changes: 4 additions & 2 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{{ define "main" }}

<div class="post {{ with .Site.Params.doNotLoadAnimations }} . {{ else }} animated fadeInDown {{ end }}">
<div class="post-title post-content">
{{ .Content }}
</div>

<!-- (Optional) Home
-- on top of `mainSections` content (aka posts) ;
-- as declared in content/_index.md
One can set `mainSections = [""]` and have the content/_index.md specified here
-->
{{ .Content }}
</div>

{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/partials/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ <h3 title=""><a href="/">{{ .Site.Params.Title }}</a></h3>
{{ end }}
</ul>
<div class="footer">
<div class="by_farbox">&copy; {{ .Site.Params.author }} {{ if isset .Site.Params "copyright" }} {{ .Site.Params.copyright }} {{ else }} {{ now.Format "2006"}} {{end}}</div>
<div class="by_farbox">&copy; {{ if isset .Site.Params "copyright" }} {{ replace .Site.Params.copyright "{{ YEAR }}" (now.Format "2006") | markdownify }} {{ else }} {{ .Site.Params.author }} {{ now.Format "2006"}} {{end}}</div>
</div>
</div>

0 comments on commit 9075350

Please sign in to comment.