You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@annotator.apache.org by bi...@apache.org on 2020/04/02 20:09:32 UTC

[incubator-annotator-website] 01/02: Add basic Open Graph Protocol stuffs

This is an automated email from the ASF dual-hosted git repository.

bigbluehat pushed a commit to branch rdfa-for-seo
in repository https://gitbox.apache.org/repos/asf/incubator-annotator-website.git

commit 040ca199095c49ffe92a153da8e2969a77cfdefd
Author: Benjamin Young <by...@wiley.com>
AuthorDate: Thu Apr 2 13:44:55 2020 -0400

    Add basic Open Graph Protocol stuffs
    
    http://ogp.me/ for the curious.
---
 content/index.html | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/content/index.html b/content/index.html
index 4e0fec0..94c6036 100644
--- a/content/index.html
+++ b/content/index.html
@@ -1,10 +1,17 @@
 <!DOCTYPE html>
-<html>
+<html prefix="og: http://ogp.me/ns#">
   <head>
     <meta charset="utf-8">
     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
     <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
     <title>Apache Annotator (incubating)</title>
+
+    <meta property="og:title" content="Apache Annotator" />
+    <meta property="og:type" content="website" />
+    <meta property="og:url" content="https://annotator.apache.org/" />
+    <meta property="og:image:url" content="https://annotator.apache.org/annotator-logo.svg" />
+    <meta property="og:image:alt" content="Apache Annotator (incubating) logo" />
+
     <link rel="stylesheet" href="//semantic-ui.com/dist/semantic.min.css" />
   </head>