Add back open graph to articles
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
59ded1221f
commit
6aadc28487
3 changed files with 16 additions and 4 deletions
|
@ -5,8 +5,21 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{title}}</title>
|
||||
<meta content="{{title}}" property="og:title">
|
||||
<meta content="{{title}}" property="twitter:title">
|
||||
<meta property="og:title" content="{{title}}">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:image" content="/images/logo-z.png">
|
||||
<meta property="og:image:width" content="310">
|
||||
<meta property="og:image:height" content="310">
|
||||
<meta property="og:image:alt" content="The Compute logo">
|
||||
<meta property="og:site_name" content="Compute: Lake Braddock's Comp-Sci Journal">
|
||||
<meta property="og:article:published_time" content="{{published_og}}">
|
||||
<meta property="og:article:modified_time" content="{{modified_og}}">
|
||||
{% for author in authors %}
|
||||
<meta property="og:article:author:first_name" content="{{ author.full_name | split(pat=' ') | nth(n=0) }}">
|
||||
<meta property="og:article:author:first_name" content="{{ author.full_name | split(pat=' ') | nth(n=1) }}">
|
||||
<meta property="og:article:author:username" content="{{author.username}}">
|
||||
{% endfor %}
|
||||
<meta content="width=device-width, initial-scale=1" name="viewport">
|
||||
<meta content="Webflow" name="generator">
|
||||
<link href="/css/normalize.css" rel="stylesheet" type="text/css">
|
||||
|
@ -55,4 +68,4 @@
|
|||
<script src="/js/webflow.js" type="text/javascript"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue