Skip to content

Commit b3b1ba6

Browse files
committed
Social metadata.
1 parent 1f26b8e commit b3b1ba6

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

django_views_tutorial/templates/layout.html

+15-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,25 @@
44
<html lang="en">
55

66
<head>
7-
<title>{{title}} | Django Views Tutorial</title>
7+
<title>{{title}} - Hackers and Slackers</title>
8+
<meta name="description" content="Function and class-based Django view repository." />
89
<meta charset="utf-8" />
9-
<meta name="description" content="This is a description">
1010
<meta name="HandheldFriendly" content="True" />
1111
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
1212
<meta name="theme-color" content="#5eb9d7">
13+
<meta property="og:site_name" content="Django Views Tutorial - Hackers and Slackers" />
14+
<meta property="og:type" content="website" />
15+
<meta property="og:title" content="Django Views Tutorial - Hackers and Slackers" />
16+
<meta property="og:description" content="Function and class-based Django view repository." />
17+
<meta property="og:url" content="https://django.hackersandslackers.app/" />
18+
<meta property="og:image" content="https://hackersandslackers-cdn.storage.googleapis.com/2020/04/django-views-1.jpg" />
19+
<meta property="og:image:width" content="1000" />
20+
<meta property="og:image:height" content="523" />
21+
<meta name="twitter:title" content="Django Views Tutorial - Hackers and Slackers" />
22+
<meta name="twitter:url" content="https://django.hackersandslackers.app/" />
23+
<meta name="twitter:description" content="Function and class-based Django view repository." />
24+
<meta name="twitter:card" content="summary_large_image" />
25+
<meta name="twitter:image" content="https://hackersandslackers-cdn.storage.googleapis.com/2020/04/django-views-1.jpg" />
1326
<link rel="apple-touch-icon" href="{% static 'homepage/img/logo.png' %}">
1427
<link rel="shortcut icon" href="{% static 'homepage/img/logo.png' %}" />
1528
<link rel="stylesheet" href="{% static 'homepage/css/styles.css' %}" type="text/css">
Loading

0 commit comments

Comments
 (0)