|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + <meta name="author" content="{{ site.author }}" /> |
| 8 | + <meta name="description" content="{{ site.description }}"> |
| 9 | + <link rel="favicon" href="{{ site.baseurl }}static/img/favicon.ico"> |
| 10 | + |
| 11 | + {% if page.title %} |
| 12 | + <title>{{ page.title }}</title> |
| 13 | + {% else %} |
| 14 | + <title>{{ site.title }}</title> |
| 15 | + {% endif %} |
| 16 | + |
| 17 | + <!-- Bootstrap --> |
| 18 | + <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" |
| 19 | + integrity="sha256-MfvZlkHCEqatNoGiOXveE8FIwMzZg4W85qfrfIFBfYc= sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" |
| 20 | + crossorigin="anonymous"> |
| 21 | + |
| 22 | + <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> |
| 23 | + <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
| 24 | + <!--[if lt IE 9]> |
| 25 | + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> |
| 26 | + <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> |
| 27 | + <![endif]--> |
| 28 | + |
| 29 | + <!-- Custom styles for this template --> |
| 30 | + <link rel="stylesheet" type="text/css" href="{{ site.baseurl }}static/css/main.css" /> |
| 31 | + <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,200bold,400old" /> |
| 32 | + <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" /> |
| 33 | + <link rel="stylesheet" type="text/css" href="{{ site.baseurl }}static/css/syntax.css" /> |
| 34 | + |
| 35 | + <!-- Google Analytics --> |
| 36 | + {% include analytics.html %} |
| 37 | + </head> |
| 38 | + <!-- Main Body--> |
| 39 | + <body> |
| 40 | + <!-- Wrap all page content here --> |
| 41 | + <div id="wrap"> |
| 42 | + <!-- Navbar header --> |
| 43 | + {% include header.html %} |
| 44 | + |
| 45 | + {{ content }} |
| 46 | + |
| 47 | + </div> |
| 48 | + <!-- Footer --> |
| 49 | + {% include footer.html %} |
| 50 | + |
| 51 | + <!-- <a href="https://github.com/myjekyll/sustain"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png"></a> --> |
| 52 | + |
| 53 | + <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> |
| 54 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> |
| 55 | + <!-- Bootstrap core JavaScript --> |
| 56 | + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" |
| 57 | + integrity="sha256-Sk3nkD6mLTMOF0EOpNtsIry+s1CsaqQC1rVLTAy+0yc= sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" |
| 58 | + crossorigin="anonymous"></script> |
| 59 | + <!-- Include all compiled plugins (below), or include individual files as needed --> |
| 60 | + <script src="{{ site.baseurl }}static/js/docs.min.js"></script> |
| 61 | + <script src="{{ site.baseurl }}static/js/main.js"></script> |
| 62 | + <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> |
| 63 | + <script src="{{ site.baseurl }}static/js/ie10-viewport-bug-workaround.js"></script> |
| 64 | + </body> |
| 65 | +</html> |
0 commit comments