From 0d4224638dfb617347cd74cb3ba76d6369b75a37 Mon Sep 17 00:00:00 2001 From: infominer33 Date: Sat, 16 Mar 2019 20:18:36 -0400 Subject: [PATCH] add custom seo tag --- README.md | 4 -- _config.yml | 1 + _includes/seo.html | 114 ++++++++++++++++++++++++++++++++++++++++++ _layouts/default.html | 2 +- 4 files changed, 116 insertions(+), 5 deletions(-) create mode 100755 _includes/seo.html diff --git a/README.md b/README.md index f4a570f4..c737dd17 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,3 @@ ---- -title: Decentralized Identity — SSI- DID -description: "Resources for Creating a Vendor Agnostic, User-Controlled, Identity Layer for the Internet." ---- # SSI - DID Resources >A good self‐sovereign identity system will allow individuals to directly influence how companies, governments, and others correlate our interactions across different services and locations by default. It won’t fix all identity problems nor preclude alternative identity approaches, but it will put the individual in control of most uses of identity and give organizations a simpler, easier, more ethical way to use identity to improve how they provide services and products. When successful, it will not only enable individuals to exercise greater control over how companies and governments keep track of us, it will also illuminate those situations where self‐sovereign identity is restricted, facilitating a conversation about when and where such limits are appropriate. [Joe Andrieu -A Technology‐Free Definition of Self‐Sovereign Identity](https://github.com/jandrieu/rebooting-the-web-of-trust-fall2016/blob/master/topics-and-advance-readings/a-technology-free-definition-of-self-sovereign-identity.pdf) diff --git a/_config.yml b/_config.yml index 27877efb..b1cf1588 100644 --- a/_config.yml +++ b/_config.yml @@ -16,6 +16,7 @@ theme: jekyll-theme-modernist twitter: title : Decentralized Identity — DID + site : "infominer33" description : "Resources for Creating a Vendor Agnostic, User-Controlled, Identity Layer for the Internet." image : "https://infominer.id/images/og-image.jpg" card : "summary" diff --git a/_includes/seo.html b/_includes/seo.html new file mode 100755 index 00000000..3a637b2b --- /dev/null +++ b/_includes/seo.html @@ -0,0 +1,114 @@ + + + +{% if seo_tag.title? %} + {{ seo_tag.title }} +{% endif %} + + + +{% if seo_tag.page_title %} + +{% endif %} + +{% if seo_tag.author.name %} + +{% endif %} + + + +{% if seo_tag.description %} + + +{% endif %} + +{% if site.url %} + + +{% endif %} + +{% if seo_tag.site_title %} + +{% endif %} + +{% if seo_tag.image %} + + {% if seo_tag.image.height %} + + {% endif %} + {% if seo_tag.image.width %} + + {% endif %} +{% endif %} + +{% if page.date %} + + +{% endif %} + +{% if paginator.previous_page %} + +{% endif %} +{% if paginator.next_page %} + +{% endif %} + +{% if site.twitter %} + {% if seo_tag.image %} + + + {% else %} + + {% endif %} + + + + + {% if seo_tag.author.twitter %} + + {% endif %} +{% endif %} + +{% if site.facebook %} + {% if site.facebook.admins %} + + {% endif %} + + {% if site.facebook.publisher %} + + {% endif %} + + {% if site.facebook.app_id %} + + {% endif %} +{% endif %} + +{% if site.webmaster_verifications %} + {% if site.webmaster_verifications.google %} + + {% endif %} + + {% if site.webmaster_verifications.bing %} + + {% endif %} + + {% if site.webmaster_verifications.alexa %} + + {% endif %} + + {% if site.webmaster_verifications.yandex %} + + {% endif %} + + {% if site.webmaster_verifications.baidu %} + + {% endif %} +{% elsif site.google_site_verification %} + +{% endif %} + + + + diff --git a/_layouts/default.html b/_layouts/default.html index 90cff225..011d740f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -4,7 +4,7 @@ -{% seo %} +{% include seo.html %}