mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 11:18:50 +01:00
19a96450c0
* remove type for css and js since they're the defaults * remove chrome=1 from X-UA-Compatible since it's become obsolete * use the protocol relative URL for the google font
29 lines
1007 B
HTML
29 lines
1007 B
HTML
<!DOCTYPE html>
|
|
<html lang='en'>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="IE=edge" http-equiv="X-UA-Compatible">
|
|
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ site.title}}</title>
|
|
{% if page.description %}
|
|
<meta name="description" content="{{ page.description | strip_html }}">
|
|
{% endif %}
|
|
|
|
<link href="/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Chivo:900">
|
|
<link rel="stylesheet" href="/css/application.css" media="screen">
|
|
<link rel="stylesheet" href="/css/jquery.qtip.min.css" media="screen">
|
|
<script src="/javascripts/modernizr.js"></script>
|
|
<!--[if (gte IE 6)&(lte IE 8)]>
|
|
<script src="/javascripts/selectivizr-min.js"></script>
|
|
<![endif]-->
|
|
|
|
</head>
|
|
<body class="{{ page.layout }} {{ page.class }}">
|
|
<div class='container'>
|
|
|
|
{% include breadcrumbs.html %}
|
|
|
|
{% if page.title %}
|
|
<h1>{{ page.title }}</h1>
|
|
{% endif %}
|