diff --git a/Gemfile.lock b/Gemfile.lock index bf9787e7..382397f9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - jekyll-theme-conference (2.3.0) + jekyll-theme-conference (2.3.1) jekyll (~> 4.0) GEM diff --git a/_includes/partials/get_link.html b/_includes/partials/get_link.html index 3a2f9cb4..5113226e 100644 --- a/_includes/partials/get_link.html +++ b/_includes/partials/get_link.html @@ -29,7 +29,15 @@ {% if talk %} {% capture modal_header %} -

{{ talk.name }}

+

+ {% if talk.hide %} + {{ talk.name }} + {% else %} + + {{ talk.name }} + + {% endif %} +

{% include partials/list_speakers.html %}

@@ -38,7 +46,13 @@

{{ talk.name }}

{% elsif speaker %} {% capture modal_header %}

- {{ speaker.first_name }} {{ speaker.last_name }} + {% if speaker.hide %} + {{ speaker.first_name }} {{ speaker.last_name }} + {% else %} + + {{ speaker.first_name }} {{ speaker.last_name }} + + {% endif %}

{% endcapture %} {% assign modal_desc = link.name %} diff --git a/_layouts/program.html b/_layouts/program.html index b830646c..cb62a128 100644 --- a/_layouts/program.html +++ b/_layouts/program.html @@ -57,7 +57,7 @@

{{ content }}
- +
diff --git a/_layouts/talk-overview.html b/_layouts/talk-overview.html index f9f1cdf0..fd760e6e 100644 --- a/_layouts/talk-overview.html +++ b/_layouts/talk-overview.html @@ -33,9 +33,9 @@

{% include partials/get_link_types.html %} {% if has_icon_links and site.conference.talks.hide_icons != true %} - + {% for link in talk.links %} - {% assign link_styleclass = "" %} + {% assign link_styleclass = "text-secondary" %} {% include partials/get_link.html %} {% if link_icon %} {{ link_tag -}} diff --git a/_layouts/talk.html b/_layouts/talk.html index b856a91c..56f302ea 100644 --- a/_layouts/talk.html +++ b/_layouts/talk.html @@ -61,13 +61,13 @@

{{ talk.name }}

{% if has_icon_links %}
    {% for link in talk.links %} - {% assign link_styleclass = "" %} + {% assign link_styleclass = "text-reset" %} {% include partials/get_link.html %} {% if link_icon %}
  • {{ link_tag }} - + {{ link.name }}
  • @@ -85,7 +85,7 @@
    {{ site.data.lang[site.conference.lang].more_information | {% include partials/get_link.html %} {% unless link_icon %} -
  • +
  • {{ link_tag }} {{ link.name }} diff --git a/jekyll-theme-conference.gemspec b/jekyll-theme-conference.gemspec index ebb4fbdd..8f6bd7db 100644 --- a/jekyll-theme-conference.gemspec +++ b/jekyll-theme-conference.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "jekyll-theme-conference" - spec.version = "2.3.0" + spec.version = "2.3.1" spec.authors = ["Lorenz Schmid"] spec.email = ["lorenzschmid@users.noreply.github.com"]

#