head.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. {% if site.app.favicon %}
  10. <link rel="shortcut icon" href="{{ site.favicon }}">
  11. {% endif %}
  12. <link rel="apple-touch-icon-precomposed" href="apple-icon-precomposed.png">
  13. {% if site.enable.smart_app_banner %}
  14. <!-- Smart App Banner -->
  15. <meta name="apple-itunes-app" content="app-id={{ site.app.ios_id }}">
  16. {% endif %}
  17. <!-- Social media management -->
  18. {% include socialcard.html %}
  19. <!-- Open All Links In A New Tab/Window -->
  20. <base target="_blank">
  21. <!-- Styles -->
  22. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  23. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  24. <link rel="stylesheet" href="{{ "/css/styles.css" | prepend: site.baseurl }}">
  25. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  26. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  27. <!--[if lt IE 9]>
  28. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  29. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  30. <![endif]-->
  31. <!-- Created with Awesome App Landing Page - http://github.com/joshbuchea/awesome-app-landing-page -->
  32. </head>