Skip to content

Commit

Permalink
Title Tag Modification
Browse files Browse the repository at this point in the history
  • Loading branch information
ankiwoong committed May 8, 2020
1 parent 275adc8 commit fd57e0d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion templates/base_generic.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en-US">

<head>
<title>Suppablog - Minimal Blog Html Template</title>
<title>{% block title %}{% endblock %}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Template by Colorlib" />
<meta name="keywords" content="HTML, CSS, JavaScript, PHP" />
Expand Down
5 changes: 5 additions & 0 deletions templates/blog/post_detail.html
@@ -1,4 +1,9 @@
{% extends "base_generic.html" %}

{% block title %}
{{ post.title }}
{% endblock %}

{% block content %}
{% load static %}

Expand Down
5 changes: 5 additions & 0 deletions templates/index.html
@@ -1,4 +1,9 @@
{% extends "base_generic.html" %}

{% block title %}
AnJiA PhotoBlog
{% endblock %}

{% block content %}
{% load static %}

Expand Down

0 comments on commit fd57e0d

Please sign in to comment.