mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-16 12:22:26 +01:00
Removed the {{url}} from the Favicon path. This fixes the intermittent
issues with the path resolving to an invalid location.
Removed the url from the twitter:image & og:image tags, to be static
references to the logo.
64 lines
2.1 KiB
HTML
64 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
|
|
<base href="/">
|
|
<title>{{title}}</title>
|
|
<meta name="description" content="{{description}}">
|
|
<meta name="fragment" content="!">
|
|
|
|
<!-- Apple META -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
|
|
<!-- Facebook META -->
|
|
<meta property="fb:app_id" content="{{facebookAppId}}">
|
|
<meta property="og:site_name" content="{{title}}">
|
|
<meta property="og:title" content="{{title}}">
|
|
<meta property="og:description" content="{{description}}">
|
|
<meta property="og:url" content="{{url}}">
|
|
<meta property="og:image" content="{{logo}}">
|
|
<meta property="og:type" content="website">
|
|
|
|
<!-- Twitter META -->
|
|
<meta name="twitter:title" content="{{title}}">
|
|
<meta name="twitter:description" content="{{description}}">
|
|
<meta name="twitter:url" content="{{url}}">
|
|
<meta name="twitter:image" content="{{logo}}">
|
|
|
|
<!-- Fav Icon -->
|
|
<link href="{{favicon}}" rel="shortcut icon" type="image/x-icon">
|
|
|
|
<!-- Application CSS Files -->
|
|
{% for cssFile in cssFiles %}<link rel="stylesheet" href="{{cssFile}}">{% endfor %}
|
|
</head>
|
|
|
|
<body class="ng-cloak">
|
|
<header ng-include="'/modules/core/client/views/header.client.view.html'" class="navbar navbar-fixed-top navbar-inverse"></header>
|
|
<section class="content">
|
|
<section class="container">
|
|
{% block content %}{% endblock %}
|
|
</section>
|
|
</section>
|
|
|
|
<!--Embedding The User Object-->
|
|
<script type="text/javascript">
|
|
var user = {{ user | json | safe }};
|
|
</script>
|
|
|
|
<!--Load The Socket.io File-->
|
|
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
|
|
|
|
<!--Application JavaScript Files-->
|
|
{% for jsFile in jsFiles %}<script type="text/javascript" src="{{jsFile}}"></script>{% endfor %}
|
|
|
|
{% if livereload %}
|
|
<!--Livereload script rendered -->
|
|
<script type="text/javascript" src="{{host}}:35729/livereload.js"></script>
|
|
{% endif %}
|
|
</body>
|
|
|
|
</html>
|