mirror of
				https://github.com/balkian/balkian.github.com.git
				synced 2025-10-30 23:28:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 | |
|     <title>{{ SITENAME }} - {% block site_title %}WELCOME{% endblock %}</title>
 | |
|     <meta name="viewport" content="width=device-width">
 | |
| 
 | |
|     <!-- syntax highlighting CSS -->
 | |
|     <link rel="stylesheet" href="{{ SITE_URL }}/theme/css/solarized.css">
 | |
|     <!--<link href="/css/bootstrap.css" rel="stylesheet">-->
 | |
|     <link rel="stylesheet" href="{{ SITE_URL }}/theme/font-awesome/css/font-awesome.min.css">
 | |
| 
 | |
|     <!--<link rel="stylesheet" href="/css/bootstrap-responsive.min.css">-->
 | |
| 
 | |
|     <!-- Custom CSS -->
 | |
|     <link rel="stylesheet" media="only screen" href="{{ SITE_URL }}/theme/css/main.css">
 | |
|     <link href='http://fonts.googleapis.com/css?family=Open+Sans:300|Comfortaa' rel='stylesheet' type='text/css'>
 | |
|   </head>
 | |
|   <body>
 | |
|     <div id="container" class="container">
 | |
|       <div id="contentwrapper">
 | |
|         <div id="content">
 | |
|       <header id="header">
 | |
|         <ul class="navbar" id="navbar">
 | |
|           <a href="/">
 | |
|           <li {% if page_name == 'index' %}class="active" {% endif %}>
 | |
|             <i class="fa fa-home fa-large"></i>
 | |
|           </li></a>
 | |
|           {% for c,carts in categories %}
 | |
|           <a href="/{{ c.url }}"><li {% if ( page_name and page_name == c.page_name) or (category and category == c ) %} class="active"
 | |
|               {% endif %} >
 | |
|             {{ c.name | capitalize }}
 | |
|           </li></a>
 | |
|           {% endfor %}
 | |
|           <a href="/tags.html"><li {% if page_name == "tags" or tag %} class="active" {%endif%}>
 | |
|             Tags
 | |
|           </li></a>
 | |
|           {% for p in pages %} {% if "/page" in p.url %}
 | |
|           {% else %}
 | |
|           {% if p.url != "/index.html" %}
 | |
|           <a href="/{{ p.url }}"><li {% if page and p.url == page.url %} class="active"
 | |
|               {% endif %} >
 | |
|             {{ p.title }}
 | |
|           </li></a>
 | |
|           {% endif %}
 | |
|           {% endif %}
 | |
|           {% endfor %}
 | |
|           <a href="//jfernando.es" target="_blank"><li>
 | |
|             CV
 | |
|           </li></a>
 | |
|         </ul>
 | |
|       </header>
 | |
|           <!--Body content-->
 | |
|           {% block content %}
 | |
|           {% endblock %}
 | |
|         </div>
 | |
|         {% include "sidebar.html" %}
 | |
|         <div class="clear"></div>
 | |
|       </div>
 | |
|       <footer role="contentinfo">
 | |
|         <div class="contact">
 | |
|           <p>
 | |
|           J. Fernando Sánchez Rada | balkian
 | |
|           </p>
 | |
|         </div>
 | |
|         <ul id="social">
 | |
|           <li><a href="http://github.com/balkian"><i class="fa fa-github"></i></a></li>
 | |
|           <li><a href="http://bitbucket.com/balkian"><i class="fa fa-bitbucket"></i></a></li>
 | |
|           <li><a href="http://twitter.com/balkian"><i class="fa fa-twitter"></i></a></li>
 | |
|           <li><a href="https://plus.google.com/u/0/111897020957944410316"><i class="fa fa-google-plus"></i></a></li>
 | |
|           <li><a href="http://linkedin.com/in/jfsanchezrada"><i class="fa fa-linkedin"></i></a></li>
 | |
|           <li><a href="http://facebook.com/balkian"><i class="fa fa-facebook"></i></a></li>
 | |
|         </ul>
 | |
|           <p>
 | |
|           <i class="fa fa-creative-commons"></i> Creative Commons A-SA-NC
 | |
|           </p>
 | |
|       </footer>
 | |
|     </div>
 | |
| 
 | |
|     <script src="{{ SITE_URL }}/theme/js/jquery-2.0.2.min.js"></script>
 | |
| <!-- Piwik -->
 | |
|     <script type="text/javascript">
 | |
|     var _paq = _paq || [];
 | |
|     _paq.push(['trackPageView']);
 | |
|     _paq.push(['enableLinkTracking']);
 | |
|     (function() {
 | |
|     var u="//piwik.sinpapel.es/";
 | |
|     _paq.push(['setTrackerUrl', u+'piwik.php']);
 | |
|     _paq.push(['setSiteId', 2]);
 | |
|     var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
 | |
|     g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
 | |
|     })();
 | |
|     </script>
 | |
|     <noscript><p><img src="//piwik.sinpapel.es/piwik.php?idsite=2" style="border:0;" alt="" /></p></noscript>
 | |
|     <!-- End Piwik Code -->
 | |
| 
 | |
|     <!--<script src="/js/bootstrap.min.js"></script>-->
 | |
|   </body>
 | |
| </html>
 |