Skip to content

Commit

Permalink
bug: fix HTML title
Browse files Browse the repository at this point in the history
  • Loading branch information
carlinmack committed Mar 19, 2024
1 parent 79af576 commit ce94ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<link rel="stylesheet" href="{{ '/static/style.css'|url }}">
<link rel="stylesheet" href="{{ '/static/font-awesome/css/font-awesome.min.css'|url}}">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,100,italic" rel="stylesheet">
<title>{% if title %}{% block title %}{% endblock %} | {% endif %}Zenodo</title>
<title>{% block title %}{% endblock %}{% if self.title() %} | {% endif %}Zenodo</title>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
Expand Down

0 comments on commit ce94ec2

Please sign in to comment.