Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added sitestatic/logos/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@
<meta charset="utf-8" />
<meta name="theme-color" content="#08C" />
<title>{% block title %}Arch Linux{% endblock %}</title>

<!-- Open Graph meta tags for social media sharing -->
<meta property="og:title" content="{% block og_title %}Arch Linux{% endblock %}" />
<meta property="og:description" content="{% block og_description %}A simple, lightweight Linux distribution that tries to Keep It Simple.{% endblock %}" />
<meta property="og:image" content="{% static "logos/og-image.png" %}" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:type" content="website" />
<meta property="og:url" content="{{ request.build_absolute_uri }}" />
<meta property="og:site_name" content="Arch Linux" />
<link rel="stylesheet" type="text/css" href="{% static "archweb.css" %}" media="screen" />
<link rel="icon" type="image/png" href="{% static "favicon.png" %}" />
<link rel="shortcut icon" type="image/png" href="{% static "favicon.png" %}" />
Expand Down