Skip to content

Commit

Permalink
Provide full date-time in content front matter
Browse files Browse the repository at this point in the history
Work-around Hugo bug.

Close alshedivat#1
  • Loading branch information
gcushen committed Apr 9, 2018
1 parent 2543e6b commit 0831cb4
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion content/home/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# About/Biography widget.
widget = "about"
active = true
date = "2016-04-20T00:00:00"
date = 2016-04-20T00:00:00

# Order that this section will appear in.
weight = 5
Expand Down
2 changes: 1 addition & 1 deletion content/home/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Contact widget.
widget = "contact"
active = true
date = "2016-04-20T00:00:00"
date = 2016-04-20T00:00:00

title = "Contact"
subtitle = ""
Expand Down
2 changes: 1 addition & 1 deletion content/home/posts.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This widget displays recent posts from `content/post/`.
widget = "posts"
active = true
date = "2016-04-20T00:00:00"
date = 2016-04-20T00:00:00

title = "Recent Posts"
subtitle = ""
Expand Down
2 changes: 1 addition & 1 deletion content/home/projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Projects widget.
widget = "projects"
active = true
date = "2016-04-20T00:00:00"
date = 2016-04-20T00:00:00

title = "Projects"
subtitle = ""
Expand Down
2 changes: 1 addition & 1 deletion content/home/publications.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This widget displays recent publications from `content/publication/`.
widget = "publications"
active = true
date = 2016-04-20
date = 2016-04-20T00:00:00

title = "Recent Publications"
subtitle = ""
Expand Down
2 changes: 1 addition & 1 deletion content/home/publications_selected.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# `selected = true` in their `+++` front matter.
widget = "publications_selected"
active = true
date = 2016-04-20
date = 2016-04-20T00:00:00

title = "Selected Publications"
subtitle = ""
Expand Down
2 changes: 1 addition & 1 deletion content/home/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Tag Cloud widget.
widget = "tag_cloud"
active = true
date = 2017-09-20
date = 2017-09-20T00:00:00

title = "Tags"
subtitle = ""
Expand Down
2 changes: 1 addition & 1 deletion content/home/talks.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Recent and Upcoming Talks widget.
widget = "talks"
active = true
date = "2016-04-20T00:00:00"
date = 2016-04-20T00:00:00

title = "Recent & Upcoming Talks"
subtitle = ""
Expand Down
2 changes: 1 addition & 1 deletion content/home/teaching.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# To create more sections, duplicate this file and edit the values below as desired.
widget = "custom"
active = true
date = "2016-04-20T00:00:00"
date = 2016-04-20T00:00:00

# Note: a full width section format can be enabled by commenting out the `title` and `subtitle` with a `#`.
title = "Custom Section"
Expand Down
2 changes: 1 addition & 1 deletion content/post/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title = "Posts"
date = 2017-01-01
date = 2017-01-01T00:00:00
math = false
highlight = false

Expand Down
2 changes: 1 addition & 1 deletion content/publication/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title = "Publications"
date = "2017-01-01T00:00:00Z"
date = 2017-01-01T00:00:00
math = false
highlight = false

Expand Down
2 changes: 1 addition & 1 deletion content/talk/_index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
+++
title = "Recent & Upcoming Talks"
date = "2017-01-01T00:00:00Z"
date = 2017-01-01T00:00:00
math = false
highlight = false

Expand Down

0 comments on commit 0831cb4

Please sign in to comment.