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