head.html 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. <head>
  2. <meta charset="utf-8">
  3. <meta http-equiv="x-ua-compatible" content="ie=edge">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
  5. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  6. <title>{% if site.title %}{{ site.title }}{% else %}{{ site.app.name }}{% endif %}</title>
  7. <meta name="description" content="{{ site.description }}">
  8. <!-- Favicon -->
  9. <link rel="shortcut icon" href="favicon.ico">
  10. <link rel="apple-touch-icon-precomposed" href="apple-icon-precomposed.png">
  11. {% if site.enable.smart_app_banner %}
  12. <!-- Smart App Banner -->
  13. <meta name="apple-itunes-app" content="app-id={{ site.app.ios_id }},affiliate-data={% include apple-affiliate.html %}">
  14. {% endif %}
  15. <!-- Open All Links In A New Tab/Window -->
  16. <base target="_blank">
  17. <!-- Styles -->
  18. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  19. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  20. <link rel="stylesheet" href="themes/default/styles.css">
  21. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  22. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  23. <!--[if lt IE 9]>
  24. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  25. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  26. <![endif]-->
  27. <!-- Created with Awesome App Landing Page - http://github.com/joshbuchea/awesome-app-landing-page -->
  28. </head>