This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added separate head for donations page
- Loading branch information
1 parent
681319e
commit b20f59d
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title> | ||
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}"> | ||
<!--[if lte IE 8]><script src="{{ "/js/ie/html5shiv.js" | prepend: site.baseurl }}"></script><![endif]--> | ||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> | ||
|
||
<!-- Apple touch icons --> | ||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" /> | ||
<link rel="apple-touch-icon" sizes="72x72" href="favicon/apple-touch-icon-72x72.png" /> | ||
<link rel="apple-touch-icon" sizes="57x57" href="favicon/apple-touch-icon-57x57.png" /> | ||
<link rel="apple-touch-icon" sizes="76x76" href="favicon/apple-touch-icon-76x76.png" /> | ||
<link rel="apple-touch-icon" sizes="114x114" href="favicon/apple-touch-icon-114x114.png" /> | ||
<link rel="apple-touch-icon" sizes="120x120" href="favicon/apple-touch-icon-120x120.png" /> | ||
<link rel="apple-touch-icon" sizes="144x144" href="favicon/apple-touch-icon-144x144.png" /> | ||
<link rel="apple-touch-icon" sizes="152x152" href="favicon/apple-touch-icon-152x152.png" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon-180x180.png" /> | ||
|
||
<!-- Quicksand and Exo via Google Fonts API --> | ||
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,500,600" rel="stylesheet"> | ||
|
||
<!-- Proxima Nova via Typekit. REMOVED FOR CRP PERFORMANCE REASONS | ||
<script src="https://use.typekit.net/vcr4muq.js"></script> | ||
<script>try{Typekit.load({ async: true });}catch(e){}</script> | ||
--> | ||
|
||
<!-- Open Graph meta tags --> | ||
<meta property="og:url" content="{{ site.url }}{{ page.url }}" /> | ||
<meta property="og:title" content="{{ page.og_title }}" /> | ||
<meta property="og:description" content="{{ page.og_description }}" /> | ||
<meta property="og:image" content="{{ site.url }}{{ page.og_image }}" /> | ||
<meta property="og:type" content="{{ page.og_type }}" /> | ||
<meta property="og:locale" content="en_US" /> | ||
|
||
<!-- Bootstrap CSS --> | ||
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> | ||
<script defer src="https://use.fontawesome.com/releases/v5.0.3/js/all.js"></script> | ||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script> | ||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script> | ||
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}"> | ||
<link rel="stylesheet" href="{{ "/css/donations.css" | prepend: site.baseurl }}"> | ||
</head> |