|
20 | 20 |
|
21 | 21 | <!-- Custom styles -->
|
22 | 22 | <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css" media="all">
|
23 |
| - |
24 | 23 | <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
25 | 24 | <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
26 | 25 | <!--[if lt IE 9]>
|
27 | 26 | <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
28 | 27 | <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
29 | 28 | <![endif]-->
|
30 | 29 |
|
| 30 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> |
| 31 | + |
31 | 32 | <!-- Fav and touch icons -->
|
32 | 33 | <!-- Update these with your own images
|
33 | 34 | <link rel="shortcut icon" href="images/favicon.ico">
|
|
43 | 44 | </head>
|
44 | 45 |
|
45 | 46 | <body>
|
46 |
| - <div id="wrap"> |
47 |
| - <nav class="navbar navbar-default" role="navigation"> |
48 |
| - <!-- Brand and toggle get grouped for better mobile display --> |
49 |
| - <div class="navbar-header"> |
50 |
| - <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#jb-navbar-collapse"> |
51 |
| - <span class="sr-only">Toggle navigation</span> |
52 |
| - <span class="icon-bar"></span> |
53 |
| - <span class="icon-bar"></span> |
54 |
| - <span class="icon-bar"></span> |
55 |
| - </button> |
56 |
| - <a class="navbar-brand" href="{{ HOME_PATH }}">{{ site.title }}</a> |
57 |
| - </div> |
58 |
| - |
59 |
| - <!-- Collect the nav links, forms, and other content for toggling --> |
60 |
| - <div class="collapse navbar-collapse" id="jb-navbar-collapse"> |
61 |
| - <ul class="nav navbar-nav"> |
62 |
| - {% assign pages_list = site.pages %} |
63 |
| - {% assign group = 'navigation' %} |
64 |
| - {% include JB/pages_list %} |
65 |
| - </ul> |
66 |
| - <form class="navbar-form navbar-right" role="search"> |
67 |
| - <div class="form-group"> |
68 |
| - <input type="text" class="form-control" placeholder="Search"> |
69 |
| - </div> |
70 |
| - <button type="submit" class="btn btn-default">Submit</button> |
71 |
| - </form> |
72 |
| - </div><!-- /.navbar-collapse --> |
73 |
| - </nav> |
74 |
| - |
| 47 | + |
| 48 | + <div class="blog-masthead"> |
75 | 49 | <div class="container">
|
76 |
| - {{ content }} |
| 50 | + <nav class="blog-nav"> |
| 51 | + {% if page.url == "/index.html" %} |
| 52 | + <a class="blog-nav-item active" href="{{ BASE_PATH }}/index.html" class="active">{{page.title}}</a> |
| 53 | + {% else %} |
| 54 | + <a class="blog-nav-item" href="{{ BASE_PATH }}/index.html">Início</a> |
| 55 | + {% endif %} |
| 56 | + {% assign pages_list = site.pages %} |
| 57 | + {% assign group = 'navigation' %} |
| 58 | + {% include JB/pages_list %} |
| 59 | + </nav> |
77 | 60 | </div>
|
78 |
| - |
79 | 61 | </div>
|
80 | 62 |
|
81 |
| - <div id="footer"> |
82 |
| - <div class="container"> |
83 |
| - <p>© {{ site.time | date: '%Y' }} {{ site.author.name }} |
84 |
| - with help from <a href="http://jekyllbootstrap.com" target="_blank" title="The Definitive Jekyll Blogging Framework">Jekyll Bootstrap</a> |
85 |
| - and <a href="http://getbootstrap.com" target="_blank">Bootstrap</a> |
86 |
| - </p> |
| 63 | + <div class="container"> |
| 64 | + |
| 65 | + <div class="blog-header"> |
| 66 | + <h1 class="blog-title">{{ site.title }}</h1> |
| 67 | + {% if site.tagline %} |
| 68 | + <p class="lead blog-description">{{ site.tagline }}</p> |
| 69 | + {% endif %} |
87 | 70 | </div>
|
88 |
| - </div> |
| 71 | + |
| 72 | + <div class="col-sm-8 blog-main"> |
| 73 | + {{ content }} |
| 74 | + </div><!-- /.blog-main --> |
| 75 | + <div class="col-sm-3 col-sm-offset-1 blog-sidebar"> |
| 76 | + <div class="sidebar-module sidebar-module-inset"> |
| 77 | + <h4><a href="{{ BASE_PATH }}/about.html">Sobre</a></h4> |
| 78 | + <div> |
| 79 | + <img class="img-rounded" src="http://www.gravatar.com/avatar/455386412a8e3c86732576b5a9b1f0ad?s=170" alt="Natan" title="Natan"/> |
| 80 | + </div> |
| 81 | + <p> |
| 82 | + {{ site.description }} |
| 83 | + </p> |
| 84 | + </div> |
| 85 | + <div class="sidebar-module"> |
| 86 | + <h4><a href="{{ BASE_PATH }}/archive.html"><i class="fa fa-folder-open"></i> Arquivo</a></h4> |
| 87 | + {% include JB/setup %} |
| 88 | + {% assign posts_collate = site.posts %} |
| 89 | + {% include JB/posts_collate %} |
| 90 | + </div> |
| 91 | + <div class="sidebar-module"> |
| 92 | + <h4><a href="{{ BASE_PATH }}/categories.html"><i class="fa fa-tag"></i> Categorias</a></h4> |
| 93 | + {% assign categories_list = site.categories %} |
| 94 | + {% include JB/categories_list %} |
| 95 | + </div> |
| 96 | + <div class="sidebar-module"> |
| 97 | + <h4><a href="{{ BASE_PATH }}/tags.html"><i class="fa fa-tags"></i> Tags</a></h4> |
| 98 | + {% assign tags_list = site.tags %} |
| 99 | + {% include JB/tags_list %} |
| 100 | + </div> |
| 101 | + <div class="sidebar-module"> |
| 102 | + <h4><a href="{{ BASE_PATH }}/about.html#links">Links</a></h4> |
| 103 | + <ol class="list-unstyled"> |
| 104 | + <li><a href="https://github.com/{{ site.author.github }}"><i class="fa fa-github"></i> Github</a></li> |
| 105 | + <li><a href="https://facebook.com/{{ site.author.facebook }}"><i class="fa fa-facebook-square"></i> Facebook</a></li> |
| 106 | + <li><a href="https://plus.google.com/{{ site.author.google.plus }}"><i class="fa fa-google-plus"></i> Google Plus</a></li> |
| 107 | + <li><a href="http://buscatextual.cnpq.br/buscatextual/visualizacv.do?id={{ site.author.lattes }}"><span><img src="{{ BASE_PATH }}/assets/lattes.svg"/></span> Lattes</a></li> |
| 108 | + </ol> |
| 109 | + </div> |
| 110 | + </div><!-- /.blog-sidebar --> |
| 111 | + </div><!-- /.container --> |
| 112 | + |
| 113 | + |
| 114 | + <footer class="blog-footer"> |
| 115 | + <p>Natan de Almeida Laverde - 2015</p> |
| 116 | + <p> |
| 117 | + <a href="http://creativecommons.org/licenses/by/4.0/deed.pt"><i class="fa fa-creative-commons"></i> Conteúdo sob licença Creative Commons CC BY 4.0.</a> |
| 118 | + </p> |
| 119 | + <p> |
| 120 | + <a href="#">Voltar ao topo.</a> |
| 121 | + </p> |
| 122 | + </footer> |
89 | 123 |
|
90 | 124 | {% include JB/analytics %}
|
91 | 125 |
|
|
0 commit comments