1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>{{ page.title }}</title>
- {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %}
- <meta name="author" content="{{ site.author.name }}">
- <!-- Enable responsive viewport -->
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta property="og:url" content="http://radicalnetworks.org" />
- <meta property="og:title" content="Radical Networks 2016" />
- <meta property="og:description" content="November 4-6, 2016 at Chemistry Creative, 315 Ten Eyck Street, Brooklyn NY" />
- <meta property="og:image" content="http://radicalnetworks.org/assets/themes/images/banner_fb2.jpg" />
- <!-- Bootstrap styles -->
- <link href="{{ ASSET_PATH }}bootstrap/css/bootstrap.min.css" rel="stylesheet">
- <!-- Optional theme -->
- <link href="{{ ASSET_PATH }}bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
- <!-- Sticky Footer -->
- <link href="{{ ASSET_PATH }}bootstrap/css/bs-sticky-footer.css" rel="stylesheet">
-
- <!-- Custom styles and fonts -->
- <link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
- <link href="{{ ASSET_PATH }}css/style.css?body=1" rel="stylesheet" type="text/css" media="all">
- <!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.0/html5shiv.js"></script>
- <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
- <![endif]-->
- <!-- Fav and touch icons -->
- <!-- Update these with your own images
- <link rel="shortcut icon" href="{{ ASSET_PATH }}/images/favicon.ico">
- <link rel="apple-touch-icon" href="{{ ASSET_PATH }}/images/apple-touch-icon.png">
- <link rel="apple-touch-icon" sizes="72x72" href="{{ ASSET_PATH }}/images/apple-touch-icon-72x72.png">
- <link rel="apple-touch-icon" sizes="114x114" href="{{ ASSET_PATH }}/images/apple-touch-icon-114x114.png">
- -->
- </head>
- <body>
- <div id="wrap">
- <div class="container">
- {% include nav.html %}
- {% include header.html %}
- <div class="row">
- <div class="col-md-8 content">
- {{ content }}
- </div>
- <div class="col-md-4 sidebar">
- {% include sidebar.html %}
- </div>
- </div>
- </div>
- </div>
- <div id="footer">
- <div class="container">
- {% include footer.html %}
- </div>
- </div>
- {% include JB/analytics %}
- <!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not supported in IE8) -->
- <!-- Placed at the end of the document so the pages load faster -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
- <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script>
- <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
- </body>
- </html>
|