diff --git a/README.md b/README.md index 5cd726d..71565fa 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,9 @@ Accept many analytics: instead of summary; - Set ``SHOW_SITESUBTITLE_IN_HTML`` to True to make use of the ``SITESUBTITLE`` variable inside the ```` HTML tag; + - Set ``FACEBOOK_ADMINS`` to a list of Facebook account IDs which are + associated with this blog. For example ``['12345']``. For more info see + https://developers.facebook.com/docs/platforminsights/domains ### Articles diff --git a/templates/base.html b/templates/base.html index 3df0454..d2b0364 100644 --- a/templates/base.html +++ b/templates/base.html @@ -73,6 +73,9 @@ {% endblock head %} {% block opengraph %} + {% for admin in FACEBOOK_ADMINS %} + <meta property="fb:admins" content="{{ admin }}" > + {% endfor %} {% for LOC in LOCALE %} <meta property="og:locale" content="{{ LOC }}"> {% endfor %}