Skip to content

Commit

Permalink
Adds OpenGraph meta tags to the base HTML template
Browse files Browse the repository at this point in the history
Not the best way to add them, but at least we're filling them out.
  • Loading branch information
joehakimrahme committed Mar 12, 2020
1 parent 886067c commit e7a9eb4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions blogstrap/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="{{ description }}">
<meta name="author" content="{{ author }}">
<meta property="og:title" content="{{ title }}" />
<meta property="og:type" content="blog" />
<meta property="og:url" content="" />
<meta property="og:description" content="{{ description }}" />
<title>{{ title }}</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="{{ url_for('static', filename='blogstrap.css') }}">
Expand Down

0 comments on commit e7a9eb4

Please sign in to comment.