File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ description: >- # this means to ignore newlines until "baseurl:"
24
24
A conference + unconference for organizers, innovators, and community builders interested in creating a better future of public life.
25
25
baseurl : " " # the subpath of your site, e.g. /blog
26
26
url : " https://civic-spark.com" # the base hostname & protocol for your site, e.g. http://example.com
27
+ image : " /assets/images/social_card.jpg"
27
28
28
29
github_username : civictechto
29
30
Original file line number Diff line number Diff line change 5
5
< title > {% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</ title >
6
6
< meta name ="viewport " content ="width=device-width, initial-scale=1 ">
7
7
< meta name ="description " content ="{{ page.description | default: site.description }} ">
8
+
9
+ <!-- Open Graph / Facebook -->
10
+ < meta property ="og:title " content ="{{ page.title | default: site.title }} ">
11
+ < meta property ="og:description " content ="{{ page.description | default: site.description }} ">
12
+ < meta property ="og:type " content ="website ">
13
+ < meta property ="og:url " content ="{{ page.url | absolute_url }} ">
14
+ {% if page.image or site.image %}
15
+ < meta property ="og:image " content ="{{ page.image | default: site.image | absolute_url }} ">
16
+ {% endif %}
17
+
18
+ <!-- Twitter -->
19
+ < meta name ="twitter:card " content ="summary_large_image ">
20
+ < meta name ="twitter:title " content ="{{ page.title | default: site.title }} ">
21
+ < meta name ="twitter:description " content ="{{ page.description | default: site.description }} ">
22
+ {% if page.image or site.image %}
23
+ < meta name ="twitter:image " content ="{{ page.image | default: site.image | absolute_url }} ">
24
+ {% endif %}
25
+
8
26
< link rel ="stylesheet " href ="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css " />
9
27
< link rel ="stylesheet " href ="{{ site.baseurl }}/assets/styles/fonts.css " />
10
28
< link rel ="stylesheet " href ="{{ site.baseurl }}/assets/styles/default-core.css " />
You can’t perform that action at this time.
0 commit comments