home page slider
This commit is contained in:
commit
f9ef96c630
|
@ -1,5 +1,10 @@
|
||||||
$(function(){
|
$(function() {
|
||||||
|
|
||||||
|
/*
|
||||||
|
$('#slidesContainer').bind("contextmenu", function(e) {
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
$('.projectThumb').click(function() {
|
$('.projectThumb').click(function() {
|
||||||
// alert("hi");
|
// alert("hi");
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$('#logo').fadeIn(4000);
|
$('#logo').fadeIn(4000);
|
||||||
|
|
||||||
|
/*
|
||||||
|
$('#slider').bind("contextmenu", function(e) {
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
*/
|
||||||
|
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
var width = $(this).width();
|
var width = $(this).width();
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
{% block inner_content %}
|
{% block inner_content %}
|
||||||
{% for l in links %}
|
{% for l in links %}
|
||||||
<p class="orange"><strong><a href="{{ l.url }}">{{ l.title }}</a></strong></p>
|
<p class="orange"><strong><a href="{{ l.url }}" target="_blank">{{ l.title }}</a></strong></p>
|
||||||
<br>
|
<br>
|
||||||
<p>{{ l.description }}</p>
|
<p>{{ l.description }}</p>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
|
@ -38,7 +38,7 @@ height:150px;
|
||||||
{% thumbnail n.image "200x150" crop='center' as im %}
|
{% thumbnail n.image "200x150" crop='center' as im %}
|
||||||
<img src="{{ im.url }}" width="200" height="150" alt="" class="imgLinks">
|
<img src="{{ im.url }}" width="200" height="150" alt="" class="imgLinks">
|
||||||
{% endthumbnail %}
|
{% endthumbnail %}
|
||||||
<p class="orange"><strong><a href="{{ n.url }}">{{ n.title }}</a></strong></p>
|
<p class="orange"><strong><a href="{{ n.url }}" target="_blank">{{ n.title }}</a></strong></p>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<p>{{ n.description }}</p>
|
<p>{{ n.description }}</p>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user