Skip to content

Commit

Permalink
Releasing theme version 1.0.4 (devopsdays#2051)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattstratton authored Mar 17, 2017
1 parent bcf0c9c commit a8faa9c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 41 deletions.
37 changes: 0 additions & 37 deletions themes/devopsdays-theme/.travis.yml

This file was deleted.

11 changes: 10 additions & 1 deletion themes/devopsdays-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [1.0.4](https://github.com/devopsdays/devopsdays-theme/tree/1.0.4) (2017-03-17)
[Full Changelog](https://github.com/devopsdays/devopsdays-theme/compare/1.0.3...1.0.4)

**Fixed bugs:**

- Register CTA button links to incorrect URL [\#394](https://github.com/devopsdays/devopsdays-theme/issues/394)
- Program page bails if no startdate [\#393](https://github.com/devopsdays/devopsdays-theme/issues/393)
- Remove .travis.yml from zipfile [\#392](https://github.com/devopsdays/devopsdays-theme/issues/392)

## [1.0.3](https://github.com/devopsdays/devopsdays-theme/tree/1.0.3) (2017-03-16)
[Full Changelog](https://github.com/devopsdays/devopsdays-theme/compare/1.0.2...1.0.3)

Expand Down Expand Up @@ -318,4 +327,4 @@



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
4 changes: 2 additions & 2 deletions themes/devopsdays-theme/layouts/partials/events/cta.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
{{ if eq $e.registration_open "true" }}
{{ if $e.registration_link }}
{{ if eq $e.registration_link "" }}
{{ $.Scratch.Set "registration_link" (printf "/events/%s/register" $event_slug)}}
{{ $.Scratch.Set "registration_link" (printf "/events/%s/registration" $event_slug)}}
{{ else }}
{{ $.Scratch.Set "registration_link" $e.registration_link }}
{{ end }}
{{ else }}
{{ $.Scratch.Set "registration_link" (printf "/events/%s/register" $event_slug)}}
{{ $.Scratch.Set "registration_link" (printf "/events/%s/registration" $event_slug)}}

{{ end }}
<div class = "col-auto offset-1 offset-md-0 welcome-page-cta">
Expand Down
3 changes: 3 additions & 0 deletions themes/devopsdays-theme/layouts/program/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ <h2>Program</h2>
{{ $event_slug := index $path 1 }}
{{ $e := (index $.Site.Data.events $event_slug) }}

{{ if $e.startdate }}

<div class="row">
<!-- enclosing div -->
Expand Down Expand Up @@ -245,5 +246,7 @@ <h4>{{- dateFormat "January 2, 2006" $e.enddate -}}</h4>

</div>{{ "<!-- whole big thing -->" | safeHTML }}

{{ end }}


{{ end }}
2 changes: 1 addition & 1 deletion themes/devopsdays-theme/theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ homepage = "https://github.com/devopsdays/devopsdays-theme/"
tags = ["", ""]
features = ["", ""]
min_version = 0.18
theme_version = 1.0.3
theme_version = 1.0.4

[author]
name = "Matt Stratton"
Expand Down

0 comments on commit a8faa9c

Please sign in to comment.