jekyll-attendease 0.6.2 → 0.6.3.pre
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0eede45624836933c48ec27576d1b6653acfb49f
|
4
|
+
data.tar.gz: 2b450a221ef89a89d6c7cffca4d1a849e1b7404a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1af65f4f7818000523b239b9e388e76ad21298b54001b80cd08f1e182758804b68bfe8ec4447fb11c5c477405a2a9d9448ffe418015dc4801ee71e2f55029a11
|
7
|
+
data.tar.gz: efbeab632988384a48d30d1da3290c6d667353ea3b05aed038bc488d54b7ea8fb3a08dc78fbe5f4d191c93e0f6808f79b29327b6fca70e32b7233c25d0b027e7
|
@@ -22,6 +22,23 @@
|
|
22
22
|
<div class="attendease-presenter-company">
|
23
23
|
{{ presenter.company }}
|
24
24
|
</div>
|
25
|
+
|
26
|
+
{% if presenter.social %}
|
27
|
+
<div class="attendease-presenter-social">
|
28
|
+
{% if presenter.social.twitter and presenter.social.twitter != '' %}
|
29
|
+
<a class="social-twitter" href="https://twitter.com/{{ presenter.social.twitter }}" target="_blank"><i class="fa fa-twitter-square fa-3"></i> Twitter</a>
|
30
|
+
{% endif %}
|
31
|
+
{% if presenter.social.facebook and presenter.social.facebook != '' %}
|
32
|
+
<a class="social-facebook" href="https://www.facebook.com/{{ presenter.social.facebook }}" target="_blank"><i class="fa fa-facebook-square fa-3"></i> Facebook</a>
|
33
|
+
{% endif %}
|
34
|
+
{% if presenter.social.linkedin and presenter.social.linkedin != '' %}
|
35
|
+
<a class="social-linkedin" href="https://www.linkedin.com/in/{{ presenter.social.linkedin }}" target="_blank"><i class="fa fa-linkedin-square"></i> LinkedIn</a>
|
36
|
+
{% endif %}
|
37
|
+
{% if presenter.social.googleplus and presenter.social.googleplus != '' %}
|
38
|
+
<a class="social-googleplus" href="https://plus.google.com/+{{ presenter.social.googleplus }}" target="_blank"><i class="fa fa-google-plus-square"></i> Google+</a>
|
39
|
+
{% endif %}
|
40
|
+
</div>
|
41
|
+
{% endif %}
|
25
42
|
</div>
|
26
43
|
{% endfor %}
|
27
44
|
</div>
|
@@ -16,6 +16,23 @@
|
|
16
16
|
{{ page.presenter.company }}
|
17
17
|
</div>
|
18
18
|
|
19
|
+
{% if page.presenter.social %}
|
20
|
+
<div class="attendease-presenter-social">
|
21
|
+
{% if page.presenter.social.twitter and page.presenter.social.twitter != '' %}
|
22
|
+
<a class="social-twitter" href="https://twitter.com/{{ presenter.social.twitter }}" target="_blank"><i class="fa fa-twitter-square fa-3"></i> Twitter</a>
|
23
|
+
{% endif %}
|
24
|
+
{% if page.presenter.social.facebook and page.presenter.social.facebook != '' %}
|
25
|
+
<a class="social-facebook" href="https://www.facebook.com/{{ presenter.social.facebook }}" target="_blank"><i class="fa fa-facebook-square fa-3"></i> Facebook</a>
|
26
|
+
{% endif %}
|
27
|
+
{% if page.presenter.social.linkedin and page.presenter.social.linkedin != '' %}
|
28
|
+
<a class="social-linkedin" href="https://www.linkedin.com/in/{{ presenter.social.linkedin }}" target="_blank"><i class="fa fa-linkedin-square"></i> LinkedIn</a>
|
29
|
+
{% endif %}
|
30
|
+
{% if page.presenter.social.googleplus and page.presenter.social.googleplus != '' %}
|
31
|
+
<a class="social-googleplus" href="https://plus.google.com/+{{ presenter.social.googleplus }}" target="_blank"><i class="fa fa-google-plus-square"></i> Google+</a>
|
32
|
+
{% endif %}
|
33
|
+
</div>
|
34
|
+
{% endif %}
|
35
|
+
|
19
36
|
<div class="attendease-presenter-bio">
|
20
37
|
{{ page.presenter.bio | markdownify }}
|
21
38
|
</div>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-attendease
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.3.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Wood
|
@@ -188,12 +188,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
188
188
|
version: '0'
|
189
189
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
190
190
|
requirements:
|
191
|
-
- - "
|
191
|
+
- - ">"
|
192
192
|
- !ruby/object:Gem::Version
|
193
|
-
version:
|
193
|
+
version: 1.3.1
|
194
194
|
requirements: []
|
195
195
|
rubyforge_project:
|
196
|
-
rubygems_version: 2.2.
|
196
|
+
rubygems_version: 2.2.0
|
197
197
|
signing_key:
|
198
198
|
specification_version: 4
|
199
199
|
summary: Attendease event helper for Jekyll
|
@@ -208,3 +208,4 @@ test_files:
|
|
208
208
|
- spec/lib/jekyll/attendease_plugin/tags_spec.rb
|
209
209
|
- spec/spec_helper.rb
|
210
210
|
- spec/support/fixtures_helpers.rb
|
211
|
+
has_rdoc:
|