src/egonomy/templates/egonomy_embed_slideshow.html
author cavaliet
Wed, 10 Jul 2013 15:31:38 +0200
changeset 230 fb6932ba9a2b
parent 224 a5db4e28a517
permissions -rw-r--r--
update registration and password management, and version number to 0.6.10
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
191
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     1
{% load static %}
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     2
{% load i18n %}
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     3
{% load egostringfilters %}
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     4
<!DOCTYPE html>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     5
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     6
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     7
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     8
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
     9
<head>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    10
    <meta charset="utf-8">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    11
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    12
    <meta name="description" content="eGonomy">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    13
    <title>eGonomy : Diaporama</title>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    14
    <link rel="stylesheet" href="{% static 'egonomy/css/reset.css' %}" />
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    15
    <link rel="stylesheet" href="{% static 'egonomy/css/fonts.css' %}" />
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    16
    <link rel="stylesheet" href="{% static 'egonomy/css/slideshow.css' %}" />
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    17
</head>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    18
<body>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    19
    <div class="slideshow-wrap">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    20
        <img class="backdrop" />
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    21
        <div class="caption-wrap">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    22
            <div class="caption">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    23
                <h2></h2>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    24
                <h3></h3>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    25
                <div class="caption-description"></div>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    26
            </div>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    27
        </div>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    28
        <svg class="image-container" xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1 1" preserveAspectRatio="none">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    29
            <defs>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    30
                <clipPath id="fragment-clip">
204
1d22c4e915a9 enhance collection in list with square images and fragments. Fullscreen on slideshow
cavaliet
parents: 191
diff changeset
    31
                    <path d="M0 0L1 0L1 1L0 1Z" class="clip-path" />
191
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    32
                </clipPath>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    33
            </defs>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    34
            <image class="main-image" xlink:href="" x="0" y="0" preserveAspectRatio="none" width="1" height="1" clip-path="url(#fragment-clip)" />
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    35
        </svg>
204
1d22c4e915a9 enhance collection in list with square images and fragments. Fullscreen on slideshow
cavaliet
parents: 191
diff changeset
    36
        <div class="top-controls">
1d22c4e915a9 enhance collection in list with square images and fragments. Fullscreen on slideshow
cavaliet
parents: 191
diff changeset
    37
            <a class="full-screen" href="#"></a>
1d22c4e915a9 enhance collection in list with square images and fragments. Fullscreen on slideshow
cavaliet
parents: 191
diff changeset
    38
            <a class="play-pause" href="#"></a>
1d22c4e915a9 enhance collection in list with square images and fragments. Fullscreen on slideshow
cavaliet
parents: 191
diff changeset
    39
        </div>
191
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    40
        <div class="arrow-wrap left-arrow">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    41
            <a class="arrow" href="#"></a>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    42
        </div>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    43
        <div class="arrow-wrap right-arrow">
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    44
            <a class="arrow" href="#"></a>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    45
        </div>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    46
    </div><!-- /.wrap -->
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    47
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    48
    <script type="text/javascript" src="{% static 'egonomy/lib/jquery.min.js' %}"></script>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    49
    <script type="text/javascript" src="{% static 'egonomy/js/slideshow.js' %}"></script>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    50
    <script>
224
a5db4e28a517 debug slideshow and version number to 0.6.8
cavaliet
parents: 204
diff changeset
    51
    var imgurlbase = "";
a5db4e28a517 debug slideshow and version number to 0.6.8
cavaliet
parents: 204
diff changeset
    52
    var slides = {{ slides|safe }};
191
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    53
    </script>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    54
</body>
d7b30914607d enhance collection and add slideshow with images and fragments.
cavaliet
parents:
diff changeset
    55
</html>