mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 19:32:19 +01:00
- Moving a few meta tags+base tag before title. I've noticed Bootstrap [recommends this](http://getbootstrap.com/getting-started/#template) (wasn't sure why) so I did some quick googling and [IE seems to be the reason](http://blogs.msdn.com/b/ieinternals/archive/2011/07/18/optimal-html-head-ordering-to-avoid-parser-restarts-redownloads-and-improve-performance.aspx) but there some other speculations too. Feel free to search more. - ...in any case, [charset tag should come before the title](http://www.w3.org/wiki/The_HTML_head_element#Stop_right_there.21_Inline_CSS_and_JavaScript_is_not_too_clever.21). - Removing keyword tag since it [isn't really used anymore](https://chrisedwards.me/seo/keyword-meta-tag-google/). - Removing duplicate Content-type/Encoding tag - Remove IE shim
64 lines
2.2 KiB
HTML
64 lines
2.2 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="{{url}}modules/core/img/brand/logo.png">
|
|
<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="{{url}}modules/core/img/brand/logo.png">
|
|
|
|
<!-- Fav Icon -->
|
|
<link href="/modules/core/img/brand/favicon.ico" 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 data-ng-include="'/modules/core/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 process.env.NODE_ENV === 'development' %}
|
|
<!--Livereload script rendered -->
|
|
<script type="text/javascript" src="{{host}}:35729/livereload.js"></script>
|
|
{% endif %}
|
|
</body>
|
|
|
|
</html>
|