jekyll-theme-conference 3.6.3 → 3.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.md +1 -1
- data/README.md +2 -0
- data/_includes/partials/navbar.html +2 -2
- data/_includes/partials/show_talk_time.html +1 -1
- data/_sass/conference.scss +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1d770839517e574b06fdd019f0a69e4378e73984327e6c6c3f93f56eb4a1ff2
|
4
|
+
data.tar.gz: 9d9c91ce29f897523aef59eecfffe177f71972befc684f4982edd2c1530dc62f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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-
|
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
|
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
|
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 = "" -%}
|
data/_sass/conference.scss
CHANGED
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.
|
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:
|
11
|
+
date: 2024-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|