This file contains hidden or 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
/* NAVIGATION MENU --------------------*/ | |
.navbar, .navbar-inner, .nav, .navbar-inverse { | |
float: none; | |
} | |
.navbar-inverse .btn-navbar { | |
background: #666; | |
margin-top: 20px; | |
} | |
.navbar,.navbar-inverse .navbar-inner { | |
background: none; |
This file contains hidden or 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
<ul class="nav"> | |
<li id="nav-item-home" class=" "> | |
<a href="/"> | |
<span> | |
Home | |
</span> | |
</a> | |
</li> | |
<li id="nav-item-menu-1" class="dropdown menu-item"> |
This file contains hidden or 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
<ul id="submenu-2" class="dropdown-menu"> | |
<li id="submenu-item-1" class="submenu-item-sub-menu-1"></li> | |
<li id="submenu-item-2" class="submenu-item-sub-menu-2"></li> | |
</ul> |
This file contains hidden or 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
<ul id="submenu-2" class="dropdown-menu"> | |
<li id="submenu-item-1" class="submenu-item-sub-menu-1"></li> <!-- (Corresponde al li:first-child)--> | |
<li id="submenu-item-2" class="submenu-item-sub-menu-2"></li> <!--(Corresponde al li:second-child)--> | |
</ul> |
This file contains hidden or 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
.btn-primary { | |
color: white; | |
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); | |
background-color: #006DCC; | |
background-image: -moz-linear-gradient(top, #08C, #04C); | |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08C), to(#04C)); | |
background-image: -webkit-linear-gradient(top, #08C, #04C); | |
background-image: -o-linear-gradient(top, #08C, #04C); | |
background-image: linear-gradient(to bottom, #08C, #04C); | |
background-repeat: repeat-x; |
This file contains hidden or 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
<div id="page-title"> | |
<div class="inner"> | |
<h2>{{ 'site.apps.media.posts.title' | translate }}</h2> | |
</div> | |
</div> | |
<div class="wrapper-row"> | |
<div class="row-fluid"> | |
<div id="main" class="span8"> |
This file contains hidden or 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
<div id="page-title"> | |
<div class="inner"> | |
<h2>{{ post.title }}</h2> | |
<small>{{ post.created_at | time_ago_in_words }}</small> | |
</div> | |
</div> | |
<div class="wrapper-row"> | |
<div class="row-fluid"> | |
<div id="main" class="span8"> |
This file contains hidden or 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
{% if widget.media %} | |
<div class="widget widget-{{ widget.type }} widget-{{ widget.width }}" id="widget-{{ widget.wid }}"> | |
<div class="inner"> | |
<h3>{{ widget.name }}</h3> | |
<ul class="list widget-list"> | |
{% for media in widget.media %} | |
<li class="item"> | |
<div class="information-fluid"> |
This file contains hidden or 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
{% if widget.media %} | |
<div class="widget widget-{{ widget.type }} widget-{{ widget.width }}" id="widget-{{ widget.wid }}"> | |
<div class="inner"> | |
<h3>{{ widget.name }}</h3> | |
<ul class="list widget-list"> | |
{% for media in widget.media %} | |
<li class="item"> | |
<div class="information-fluid"> |