jekyll-theme-conference 3.6.3 → 3.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61b7f9271a152b1368fb216342281bceed52d157e63866a0af293ff9e2c19686
4
- data.tar.gz: 193a60a8ea2c1559279dfdd05262681d1df8cc1e1e990d8a76bbdccc4f8a987f
3
+ metadata.gz: d1d770839517e574b06fdd019f0a69e4378e73984327e6c6c3f93f56eb4a1ff2
4
+ data.tar.gz: 9d9c91ce29f897523aef59eecfffe177f71972befc684f4982edd2c1530dc62f
5
5
  SHA512:
6
- metadata.gz: 9c5002b5e3808191703950acb3d9b5b1fa64038b25f7abf873f97e77ded566cac6bce8983ff6bd0d94cf264c550e9e2ec9402dc4a93bc545eb09d1322fa65045
7
- data.tar.gz: 66e00cd41d3e99897a9959d4ef1976f5f3a48ecf747155eb05649b6fbf7d2c1257713a6efac8972e8b50ddb883607441433833dba33a962229533960ff3f97a0
6
+ metadata.gz: 3c90d5c431811772cae69566e296659c8f08d15e84fdc8fd94c11a5e28247ced8d4c6811e1e687d5ec7f7aa5a79627d6d8fc88302089bc9140a0d7c5b483c910
7
+ data.tar.gz: cb851debdc7ac29a89e4ea2821f5706d5dbcdf9587268fd54dd8a735fb0666fb06588ab692eefd8a9211cfdf442f6ee9563511bbdeb4a8f16b2ac9c7f346affd
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright 2017-2020 Lorenz Schmid
3
+ Copyright 2017-2024 Lorenz Schmid
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
6
 
data/README.md CHANGED
@@ -290,6 +290,8 @@ conference:
290
290
  url: 'https://github.com'
291
291
  ```
292
292
 
293
+ The navigation bar automatically collapses when the available space is too small (e.g. on a smaller screen). The breakpoints are given by [Bootstrap](https://getbootstrap.com/docs/4.6/layout/overview/#responsive-breakpoints). The default breakpoint is `md` (collapsing if the screen width is smaller than 992px). It can be adapted by setting the `breakpoint` property under the `navigation` property to either `sm`, `md`, `lg`, or `xl`.
294
+
293
295
  ### Open Graph Link Preview
294
296
 
295
297
  The theme automatically includes the necessary `<meta>` tags to ease link previewing when sharing links based on the [Open Graph protocol](https://ogp.me/) and [Twitter Cards](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards). These tags control how a link is presented when shared via different platform and apps. In order to disable these `<meta>` tags add the `disable: true` setting (default: `false`) to the `link_preview` property.
@@ -1,4 +1,4 @@
1
- <nav class="navbar navbar-expand-md navbar-light bg-light mb-3">
1
+ <nav class="navbar navbar-expand-{{ site.conference.navigation.breakpoint | default: 'md' }} navbar-light bg-light mb-3">
2
2
  <div class="container">
3
3
 
4
4
  <a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.title }}</a>
@@ -82,7 +82,7 @@
82
82
  </div>
83
83
 
84
84
  {%- if site.conference.navigation.logo %}
85
- <div class="navbar-brand navbar-logo mr-0 w-25 text-right overflow-hidden">
85
+ <div class="navbar-brand navbar-logo mr-0 ml-1 text-right overflow-hidden">
86
86
  <a href="{{ site.conference.navigation.logo.url }}">
87
87
  {%- if site.conference.navigation.logo.img %}
88
88
  <img src="{{ site.conference.navigation.logo.img | prepend: '/assets/images/' | prepend: site.baseurl }}" class="align-middle" alt="{{ site.conference.navigation.logo.name }}" />
@@ -11,7 +11,7 @@
11
11
  {%- unless talk_day_hide -%} {{ day_abbr }}, {% endunless -%}
12
12
  {%- assign talk_day_hide = false -%}
13
13
  {% endif -%}
14
- {{- talk_start_hour -}}:{%- if talk_start_min == 0 -%}0{%- endif -%}{{- talk_start_min -}}
14
+ {{- talk_start_hour -}}:{%- if talk_start_min < 10 -%}0{%- endif -%}{{- talk_start_min -}}
15
15
  </a>
16
16
 
17
17
  {%- assign talk_time_styleclass = "" -%}
@@ -79,6 +79,11 @@ ul.btn-group {
79
79
 
80
80
  // General
81
81
 
82
+ // Extend logo when collapsed navbar is shown
83
+ .navbar-collapse.show + .navbar-logo {
84
+ width: 100%;
85
+ }
86
+
82
87
  // Keep images in container
83
88
  main.container img {
84
89
  max-width: 100%;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-conference
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.3
4
+ version: 3.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lorenz Schmid
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-17 00:00:00.000000000 Z
11
+ date: 2024-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll