Skip to content

Instantly share code, notes, and snippets.

@andrellima
Created December 9, 2010 18:39
Show Gist options
  • Save andrellima/735115 to your computer and use it in GitHub Desktop.
Save andrellima/735115 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block head %}
<script type="text/javascript">
$(document).ready(function(){
$('#portfolio-list').filterable();
});
</script>
{% endblock %}
{% block conteudo %}
<ul id="portfolio-filter">
<li><a href="#all" title="">All</a></li>
<li><a href="#telefonia" title="" rel="telefonia">Telefonia</a></li>
<li><a href="#bebida" title="" rel="bebida">Bebida</a></li>
<li><a href="#comunicacao" title="" rel="comunicacao">Comunicação</a></li>
</ul>
<ul id="portfolio-list">
<li style="display: block;" class="telefonia">
<a href="" title=""><img src="{{MEDIA_URL}}tim.jpg" alt=""></a>
<p>
Tim
</p>
</li>
<li style="display: block;" class="telefonia">
<a href="" title=""><img src="{{MEDIA_URL}}claro.jpg" alt=""></a>
<p>
Claro
</p>
</li>
<li style="display: block;" class="bebida">
<a href="" title=""><img src="{{MEDIA_URL}}hei.jpg" alt=""></a>
<p>
Heineken
</p>
</li>
</ul>
{% endblock %}
<html>
<head>
<title>
{% block titulo %}Titulo teste {% endblock %}
</title>
<link rel="stylesheet" href="{{ MEDIA_URL }}layout.css"/>
<link rel="stylesheet" href="{{ MEDIA_URL }}/js/filteratable.pack.js"/>
<link rel="stylesheet" href="{{ MEDIA_URL }}/js/filteratable.js"/>
<link rel="stylesheet" type="text/css"
href="{{ MEDIA_URL }}/js/jquery-1.4.4.js"/>
</head>
<body>
<h1>{% block h1 %}Teste{% endblock %}</h1>
<div id="menu">
{% block menu %}
{% spaceless %}
<ul>
<li><a href="{% url views.req_empresas %}">Empresa</a></li>
<li><a href="{% url views.get_clientes %}">Clientes</a></li>
<li><a href="{% url views.req_noticias %}">Noticias</a></li>
<li><a href="{% url views.contato %}">Contato</a></li>
</ul>
{% endspaceless %}
{% endblock menu %}
</div>
{% block conteudo %}{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment