1 {% load static %} |
|
2 {% load i18n %} |
|
3 {% load analytics %} |
|
4 {% load thumbnail %} |
|
5 {% load front_tags %} |
|
6 <!DOCTYPE html> |
|
7 <html> |
|
8 <head> |
|
9 {% block head %} |
|
10 <meta charset="utf-8"> |
|
11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|
12 <meta name="description" content="Interface d'édition de Hashcuts (Mashups vidéo cliquables)" /> |
|
13 <meta name="copyright" content="Institut de Recherche et d'Innovation (IRI), 2012" /> |
|
14 <meta name="author" content="Anthony Ly, Raphaël Velt, Thibaut Cavalié" /> |
|
15 <title>Hashcut BPI » {% block title %}Accueil{% endblock %}</title> |
|
16 {% block css_declaration %} |
|
17 {% endblock %} |
|
18 |
|
19 {% block css_import %} |
|
20 <link rel="stylesheet" href="{% static 'hashcut/lib/jquery-ui.css' %}" /> |
|
21 <link rel="stylesheet" href="{% static 'hashcut/bpi/css/reset.css' %}" /> |
|
22 <link rel="stylesheet" href="{% static 'hashcut/bpi/css/common.css' %}" /> |
|
23 {% endblock %} |
|
24 {% block css_page %} |
|
25 <link rel="stylesheet" href="{% static 'hashcut/bpi/css/home.css' %}" /> |
|
26 {% endblock %} |
|
27 |
|
28 {% block js_declaration %} |
|
29 {% endblock %} |
|
30 {% endblock %} |
|
31 </head> |
|
32 <body> |
|
33 {% block body %} |
|
34 <div class="wrap-header-top"> |
|
35 <div class="wrap-header-top-content"> |
|
36 <a title="Bibliothèque Publique d'Information" href="{% url mashup_home branding=branding %}"><img src="{% static 'hashcut/bpi/img/pompidou-logo.png' %}" alt="Bibliothèque centre Pompidou" /></a> |
|
37 </div> |
|
38 </div><!-- wrap-header-top --> |
|
39 |
|
40 {% block wrap_header %} |
|
41 <div class="wrap-header"> |
|
42 <div class="header"> |
|
43 {% include 'partial/bpi_mashup_popin_user.html' %} |
|
44 {% include 'partial/bpi_hashcut_logo.html' %} |
|
45 <div class="title-header"> |
|
46 <h2><a href="{% url mashup_edit branding=branding %}">Créer un hashcut !</a></h2> |
|
47 </div> |
|
48 <div class="profil-wrap"> |
|
49 <ul class="space-top-2"> |
|
50 <li><a href="#user" class="my-profil open-popin">Mon profil</a></li> |
|
51 </ul> |
|
52 </div> |
|
53 </div><!-- header --> |
|
54 </div><!-- wrap-header --> |
|
55 {% endblock %} |
|
56 |
|
57 {% block wrapper %} |
|
58 <div class="wrapper"> |
|
59 <div class="wrap"> |
|
60 {% block content %} |
|
61 <div class="content"> |
|
62 <div class="left-content"> |
|
63 <h2>Hashcuts à la Une</h2> |
|
64 <div class="hashcut-video-wrap news"> |
|
65 <div class="video-item"> |
|
66 {% if m1 %} |
|
67 <a href="{% url mashup_hashcut branding=branding ldt_id=m1.project.ldt_id %}" class="screenshot">{% thumbnail m1.project.image "302x202" crop="center" format="PNG" as im %}<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" alt=""/>{% empty %} {% endthumbnail %}</a> |
|
68 <h3><a class="title" href="{% url mashup_hashcut branding=branding ldt_id=m1.project.ldt_id %}">{{ m1.project.title }}</a> par <a class="author" href="{% url mashup_profile branding=branding username=m1.creator %}">{{ m1.creator }}</a> | <span class="duration">02:24</span> </h3> |
|
69 {% endif %} |
|
70 </div> |
|
71 <div class="video-item"> |
|
72 {% if m2 %} |
|
73 <a href="{% url mashup_hashcut branding=branding ldt_id=m2.project.ldt_id %}" class="screenshot">{% thumbnail m2.project.image "302x202" crop="center" format="PNG" as im %}<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" alt=""/>{% empty %} {% endthumbnail %}</a> |
|
74 <h3><a class="title" href="{% url mashup_hashcut branding=branding ldt_id=m2.project.ldt_id %}">{{ m2.project.title }}</a> par <a class="author" href="{% url mashup_profile branding=branding username=m2.creator %}">{{ m2.creator }}</a> | <span class="duration">02:24</span> </h3> |
|
75 {% endif %} |
|
76 </div> |
|
77 </div> |
|
78 |
|
79 <h2>Derniers Hashcuts</h2> |
|
80 <div class="hashcut-video-wrap last"> |
|
81 {% for m in mashups %} |
|
82 <div class="video-item"> |
|
83 <a href="{% url mashup_hashcut branding=branding ldt_id=m.project.ldt_id %}" class="screenshot">{% thumbnail m.project.image "142x95" crop="center" format="PNG" as im %}<img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" alt=""/>{% empty %} {% endthumbnail %}</a> |
|
84 <h3><a class="title" href="{% url mashup_hashcut branding=branding ldt_id=m2.project.ldt_id %}">{% if m.project.title|length > 30 %}{{m.project.title|slice:":30"}}...{% else %}{{m.project.title}}{% endif %}</a> par <a class="author" href="{% url mashup_profile branding=branding username=m.creator %}">{{ m.creator }}</a> | <span class="duration">02:24</span> </h3> |
|
85 </div> |
|
86 {% endfor %} |
|
87 </div> |
|
88 |
|
89 <div class="pagination"> |
|
90 <a href="{% url mashup_all branding=branding %}">Tous les Hashcuts</a> |
|
91 </div> |
|
92 |
|
93 </div><!-- left-content --> |
|
94 <div class="right-content"> |
|
95 <div class="definition"> |
|
96 <h2>Hashcuts ?</h2> |
|
97 <p>Un <strong>Hashcut</strong> est à la fois une <a href="http://fr.wikipedia.org/wiki/Hypervid%C3%A9o" target="_blank">Hypervidéo</a> (vidéo cliquable) et un <a href="http://fr.wikipedia.org/wiki/Mashup_%28video%29" target="_blank">Mashup</a> (mélange de médias, de l’anglais mash, «purée»).</p> |
|
98 <p>Un <strong>Hashcut</strong> est un assemblage de citations de vidéos, mises bout à bout, sans altération des médias d’origine, et permet à chacun de proposer un nouveau regard, une porte d’entrée éditorialisée sur ces médias.</p> |
|
99 </div> |
|
100 <div class="how-to"> |
|
101 <h2>Comment faire ?</h2> |
|
102 <ul> |
|
103 <li class="inscription"> |
|
104 <h3><a href="#">1. S’inscrire</a></h3> |
|
105 <p>Commencez par créer votre espace personnel sur cette plateforme !</p> |
|
106 </li> |
|
107 <li class="next-step"></li> |
|
108 <li class="creation"> |
|
109 <h3><a href="{% url mashup_edit branding=branding %}">2. Créer un hashcut</a></h3> |
|
110 <p>Choisissez des médias, segmentez les, assemblez les segments et rajoutez des commentaires sur le Hashcut.</p> |
|
111 </li> |
|
112 <li class="next-step"></li> |
|
113 <li class="publier"> |
|
114 <h3><a href="#">3. Publier et partager</a></h3> |
|
115 <p>Une fois le hashcut terminé, publiez-le sur cette plateforme etpartagez votre création sur les réseaux sociaux</p> |
|
116 </li> |
|
117 </ul> |
|
118 </div> |
|
119 |
|
120 </div><!-- left-content --> |
|
121 </div><!-- content --> |
|
122 {% endblock %} |
|
123 {% block footer %} |
|
124 <div class="footer clearfix"> |
|
125 <ul class="links-left"> |
|
126 <li><a href="#">Mentions légales</a></li> |
|
127 <li><a href="#">Contacts</a></li> |
|
128 </ul> |
|
129 <ul class="links-right"> |
|
130 <li><a title="IRI" href="http://www.iri.centrepompidou.fr/" target="_blank"> <img src="{% static 'hashcut/bpi/img/logo-iri.png' %}" alt="iri" /></a></li> |
|
131 <li><a title="cinecast" href="http://cinecast.fr/" target="_blank"><img src="{% static 'hashcut/bpi/img/logo-cinecast.png' %}" alt="cinecast" /></a></li> |
|
132 <li>© 2012</li> |
|
133 </ul> |
|
134 </div><!-- footer --> |
|
135 {% endblock %} |
|
136 </div><!-- wrap --> |
|
137 </div><!-- wrapper --> |
|
138 {% endblock %} |
|
139 <!-- JavaScript --> |
|
140 {% block js_import %} |
|
141 <script type="text/javascript" src="{% static 'hashcut/lib/jquery.min.js' %}"></script> |
|
142 <script type="text/javascript" src="{% static 'hashcut/lib/jquery-ui.min.js' %}"></script> |
|
143 <script type="text/javascript" src="{% static 'hashcut/js/common.js' %}"></script> |
|
144 <script type="text/javascript" src="{% static 'hashcut/js/social.js' %}"></script> |
|
145 <script type="text/javascript" src="{% static 'hashcut/lib/ZeroClipboard.js' %}"></script> |
|
146 {% endblock %} |
|
147 {% endblock %} |
|
148 {% analytics %} |
|
149 </body> |
|
150 </html> |
|