diff options
| -rw-r--r-- | templates/base.html | 2 | ||||
| -rw-r--r-- | templates/index.html | 18 |
2 files changed, 17 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html index 94b408b..ddc15bb 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> {{ template "title" . }} <meta name="viewport" content="width=device-width, initial-scale=1.0"> diff --git a/templates/index.html b/templates/index.html index b17adb6..a89a17a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,12 +1,27 @@ {{ define "title" }} <title>Christine Dodrill</title> <link rel="authorization_endpoint" href="https://indieauth.com/auth"> + +<!-- Twitter --> +<meta name="twitter:card" content="summary" /> +<meta name="twitter:site" content="@theprincessxena" /> +<meta name="twitter:title" content="Christine Dodrill" /> +<meta name="twitter:description" content="Web and Backend Services Devops Specialist" /> + +<!-- Facebook --> +<meta property="og:type" content="website" /> +<meta property="og:title" content="Christine Dodrill" /> +<meta property="og:site_name" content="Web and Backend Services Devops Specialist" /> + +<!-- Description --> +<meta name="description" content="Web and Backend Services Devops Specialist" /> +<meta name="author" content="Christine Dodrill"> {{ end }} {{ define "content" }} <div class="grid"> <div class="cell -3of12 content"> - <img src="/static/img/avatar.png"> + <img src="/static/img/avatar.png" alt="My Avatar"> <br /> <a href="/contact" class="justify-content-center">Contact Me</a> </div> @@ -38,7 +53,6 @@ <h5>Quick Links</h5> <ul> - <li><a href="https://twitter.com/theprincessxena" rel="me">Twitter</a></li> <li><a href="https://github.com/Xe" rel="me">GitHub</a></li> </ul> </div> |
