diff --git a/data/page_sharer.toml b/data/page_sharer.toml new file mode 100644 index 0000000..e0e5aad --- /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 d9d06f8..7101e4d 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 index 07d9438..d33d6b0 160000 --- a/themes/academic +++ b/themes/academic @@ -1 +1 @@ -Subproject commit 07d94380f2dc14ba2f8cfa109b52ca92ba3e6693 +Subproject commit d33d6b0ff6e059112c35f0f2271a02c635386743