Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wowchemy/starter-academic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Cushen <gcushen@users.noreply.github.com>2019-06-16 21:34:32 +0300
committerGeorge Cushen <gcushen@users.noreply.github.com>2019-06-16 21:34:32 +0300
commitcb97d87dcf5827489dce0d771a0c3193ae444cc5 (patch)
tree4a135c5761c372613bcbb0ae8acb845e48fb3f48
parent6aea79e3310cd0c42a2ba39a26970d6996fad1ea (diff)
theme: sync v4.4.0-dev - get Page Sharer config + fixes
-rw-r--r--data/page_sharer.toml58
-rw-r--r--scripts/init_kickstart.sh3
m---------themes/academic0
3 files changed, 61 insertions, 0 deletions
diff --git a/data/page_sharer.toml b/data/page_sharer.toml
new file mode 100644
index 00000000..e0e5aad3
--- /dev/null
+++ b/data/page_sharer.toml
@@ -0,0 +1,58 @@
+# Page Sharer
+# Documentation: https://sourcethemes.com/academic/docs/customization/#page-sharer
+
+[[buttons]]
+ id = "twitter"
+ url = "https://twitter.com/intent/tweet?url={url}&text={title}"
+ title = "Twitter"
+ icon_pack = "fab"
+ icon = "twitter"
+ enable = true
+
+[[buttons]]
+ id = "facebook"
+ url = "https://www.facebook.com/sharer.php?u={url}&t={title}"
+ title = "Facebook"
+ icon_pack = "fab"
+ icon = "facebook-f"
+ enable = true
+
+[[buttons]]
+ id = "email"
+ url = "mailto:?subject={title}&body={url}"
+ title = "Email"
+ icon_pack = "fas"
+ icon = "envelope"
+ enable = true
+
+[[buttons]]
+ id = "linkedin"
+ url = "https://www.linkedin.com/shareArticle?url={url}&title={title}"
+ title = "LinkedIn"
+ icon_pack = "fab"
+ icon = "linkedin-in"
+ enable = true
+
+[[buttons]]
+ id = "whatsapp"
+ url = "https://web.whatsapp.com/send?text={title}%20{url}"
+ title = "WhatsApp"
+ icon_pack = "fab"
+ icon = "whatsapp"
+ enable = true
+
+[[buttons]]
+ id = "weibo"
+ url = "https://service.weibo.com/share/share.php?url={url}&title={title}"
+ title = "Weibo"
+ icon_pack = "fab"
+ icon = "weibo"
+ enable = true
+
+[[buttons]]
+ id = "reddit"
+ url = "https://reddit.com/submit?url={url}&title={title}"
+ title = "Reddit"
+ icon_pack = "fab"
+ icon = "reddit-alien"
+ enable = false
diff --git a/scripts/init_kickstart.sh b/scripts/init_kickstart.sh
index d9d06f8f..7101e4da 100644
--- a/scripts/init_kickstart.sh
+++ b/scripts/init_kickstart.sh
@@ -15,6 +15,9 @@ rsync -av ../themes/academic/exampleSite/config/ ../config/
# Install demo user
rsync -av ../themes/academic/exampleSite/content/authors/ ../content/authors/
+# Install page sharer button customizer
+rsync -av ../themes/academic/data/page_sharer.toml ../data/
+
# Install an example instance of each widget type
rsync -av --exclude gallery/ ../themes/academic/exampleSite/content/home/ ../content/home/
diff --git a/themes/academic b/themes/academic
-Subproject 07d94380f2dc14ba2f8cfa109b52ca92ba3e669
+Subproject d33d6b0ff6e059112c35f0f2271a02c63538674