Skip to content

Commit

Permalink
make title show episode title first
Browse files Browse the repository at this point in the history
  • Loading branch information
maneesha authored and fmichonneau committed May 13, 2019
1 parent 766155a commit 2507646
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion _layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<title>{{ site.title }}{% if page.title %}: {{ page.title }}{% endif %}</title>

<title>
{% if page.title %}{{ page.title }}: {% endif %}
{% if site.title %}{{ site.title }}{% endif %}
</title>

</head>
<body>

Expand Down

0 comments on commit 2507646

Please sign in to comment.