-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1108 lines (1076 loc) · 43.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Mural - Visual storytelling made easy</title>
<meta
name="description"
content="Mural is a software tool to make visual stories. Combine videos, images, sounds and text in full screen and with full impact. Find out more and download Mural now!"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<link rel="shortcut icon" href="img/favicon.ico" />
<meta property="og:title" content="Mural - Visual storytelling made easy" />
<meta property="og:url" content="http://www.getmural.io" />
<meta property="og:site_name" content="Mural" />
<meta
property="og:description"
content="Mural is a software tool to make visual stories. Combine videos, images, sounds and text in full screen and with full impact. Find out more and download Mural now!"
/>
<meta
property="og:image"
content="https://www.getmural.io/uploads/mural_website/photographer_ice_sunrise.jpg"
/>
<meta property="og:type" content="article" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"
integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4"
crossorigin="anonymous"
/>
<link
href="https://cdn-images.mailchimp.com/embedcode/classic-10_7.css"
rel="stylesheet"
type="text/css"
/>
<style type="text/css">
#example-stories ul {
list-style-type: none;
padding: 0.5rem;
}
#example-stories figcaption {
margin: 0.5rem 0 2rem 0.5rem;
line-height: 1.5;
font-size: 0.95rem;
}
#mc_embed_signup form {
padding: 0;
}
.top-logo {
height: 150px;
margin-bottom: 2rem;
}
.top-logo img {
height: 150px;
}
</style>
<!-- Google Tag Manager -->
<script>
(function(w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-KLKVQ9C");
</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-KLKVQ9C"
height="0"
width="0"
style="display:none;visibility:hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<a
href="https://github.com/GetMural"
class="github-corner"
aria-label="View source on Github"
><svg
width="80"
height="80"
viewBox="0 0 250 250"
style="fill:#64CEAA; color:#fff; position: absolute; top: 0; border: 0; right: 0;"
aria-hidden="true"
>
<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>
<path
d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2"
fill="currentColor"
style="transform-origin: 130px 106px;"
class="octo-arm"
></path>
<path
d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z"
fill="currentColor"
class="octo-body"
></path></svg></a
><style>
.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
@keyframes octocat-wave {
0%,
100% {
transform: rotate(0);
}
20%,
60% {
transform: rotate(-25deg);
}
40%,
80% {
transform: rotate(10deg);
}
}
@media (max-width: 500px) {
.github-corner:hover .octo-arm {
animation: none;
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out;
}
}
</style>
<div class="container top-logo">
<img src="img/logo.svg" />
</div>
<main class="container" role="main">
<div class="row">
<div class="col col-lg-12 col-xl-8">
<section>
<h1>Visual Storytelling with Mural</h1>
<div>
<p class="lead">
Visual storytelling is different from writing in text only, and
we believe it requires a purpose-built tool to work with the
richness and power of multimedia.
</p>
<p>
Mural is a tool for visual storytelling. It’s a program that
helps you sequence your visual story, and then generates
everything needed for that story to be displayed on most modern
web browsers and served from any web server.
</p>
<p>
When a story is made with Mural, its visual elements are
displayed at full screen by default, letting the strength and
richness of your work shine through. Images can be combined with
sound, videos combined with text, and numerous other
combinations are possible. Rearrange your sequences with a
simple drag and drop.
</p>
</div>
<dl class="lead">
<dt>What you see is what you get</dt>
<dd>
See the way your story will look, test out all of the elements,
and make changes if necessary before it’s uploaded to the web.
</dd>
<dt>Journalism</dt>
<dd>
Make better use of the power of visual storytelling. Present
complex stories in long form with the strong visuals they
deserve. Set your photo and video journalists free.
</dd>
<dt>Art</dt>
<dd>
Create compelling documentation for galleries, museums and
individual artists. Present work in a more compelling manner.
</dd>
<dt>Storytelling</dt>
<dd>
Mural can be used effectively anywhere where a story needs to be
told across media. Present your organization's stories in a
visually powerful way quickly, easily and in a cost-effective
manner.
</dd>
<dt>Advertising and Marketing</dt>
<dd>
Present your brand with greater impact, and bring your web and
video assets closer together.
</dd>
</dl>
</section>
<section id="example-stories">
<!-- BEGIN TEXT ON STORIES -->
<h2>Stories Produced by Mural</h2>
<ul>
<li>
<figure>
<a href="https://udn.com/upf/vision/Zoo_of_the_Future/" target="_blank" rel="noopener nofollow">
<picture>
<source
srcset="
img/futurezoo_320.jpg,
img/futurezoo_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/futurezoo_320.jpg,
img/futurezoo_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/futurezoo_640.jpg,
img/futurezoo_1280.jpg 2x
"
alt="Flamingos in a zoo of the future"
/>
</picture>
<div><cite>Zoo of the Future, Guo Xiuzhen</cite></div>
</a>
<figcaption>
The zoo is a window to observe a city's mentality and mind.
</figcaption>
</figure>
</li>
<li>
<figure>
<a href="https://udn.com/upf/the_invisibles" target="_blank" rel="noopener nofollow">
<picture>
<source
srcset="
img/theinvisibles_320.jpg,
img/theinvisibles_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/theinvisibles_320.jpg,
img/theinvisibles_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/theinvisibles_640.jpg,
img/theinvisibles_1280.jpg 2x
"
alt="The Invisibles cover image"
/>
</picture>
<div><cite>The Invisibles, Edd Jhong</cite></div>
</a>
<figcaption>
A journey into Taiwan's agriculture labour shortages and the
illegal agricultural migrants who keep the country's system
going.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/mikkeller-christmas-calendar-2019/"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="img/mikkeller_320.jpg, img/mikkeller_640.jpg 2x"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="img/mikkeller_320.jpg, img/mikkeller_640.jpg 2x"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/mikkeller_640.jpg,
img/mikkeller_1280.jpg 2x
"
alt="THE GREAT MIKKELLER X-MAS CALENDAR (2019)"
/>
</picture>
<div>
<cite
>The Great Mikkeller X-Mas Calendar (2019), Naomi
Aro</cite
>
</div>
</a>
<figcaption>
Mikkel and Søren had 3 hours to test the Mikkeller Christmas
Calendar. That's 24 beers each + surprises.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/taipei-lennon-wall/"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="img/taipei_320.jpg, img/taipei_640.jpg 2x"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="img/taipei_320.jpg, img/taipei_640.jpg 2x"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="img/taipei_640.jpg, img/taipei_1280.jpg 2x"
alt="Taipei's Lennon Wall cover image"
/>
</picture>
<div>
<cite>Taipei's Lennon Wall, Douglas Arellanes</cite>
</div>
</a>
<figcaption>
A silent but colorful form of protest has spread from Hong
Kong to Taipei and beyond, but has its roots on a quiet
square in Prague.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/aau/prague-pikador-final/"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="img/pikador_320.jpg, img/pikador_640.jpg 2x"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="img/pikador_320.jpg, img/pikador_640.jpg 2x"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="img/pikador_640.jpg, img/pikador_1280.jpg 2x"
alt="Eating the pikador in Prague cover image"
/>
</picture>
<div>
<cite>Eating the Pikador in Prague, Romana Osborne</cite>
</div>
</a>
<figcaption>
Visual storyteller Romana Osborne looks at the phenomenon of
the "párek v rohlíku," the street food ubiquitous in the
Czech Republic.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/mark_baker/prague-architecture-vimeo/"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="
img/praguearch_320.jpg,
img/praguearch_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/praguearch_320.jpg,
img/praguearch_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/praguearch_640.jpg,
img/praguearch_1280.jpg 2x
"
alt="Architecture 1: A Primer for Reading Prague cover image"
/>
</picture>
<div>
<cite
>Architecture 1: A Primer for Reading Prague, Mark
Baker</cite
>
</div>
</a>
<figcaption>
Travel writer Mark Baker provides an introduction to
Prague's numerous architectural styles with videos and
images to illustrate the different eras.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/elegantni-cesko-tv/"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="img/elegantni_320.jpg, img/elegantni_640.jpg 2x"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="img/elegantni_320.jpg, img/elegantni_640.jpg 2x"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/elegantni_640.jpg,
img/elegantni_1280.jpg 2x
"
alt="Elegantní Česko TV cover image"
/>
</picture>
<div>
<cite
>Elegantní Česko, story prepared by Douglas
Arellanes</cite
>
</div>
</a>
<figcaption>
Promotional material for Elegantní Česko, a Czech startup TV
channel who is successfully crowdfunding the creation of the
channel.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/tuska2019/"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="img/tuska_320.jpg, img/tuska_640.jpg 2x"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="img/tuska_320.jpg, img/tuska_640.jpg 2x"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="img/tuska_640.jpg, img/tuska_1280.jpg 2x"
alt="Tuska cover image"
/>
</picture>
<div><cite>Tuska, created by Naomi Aro</cite></div>
</a>
<figcaption>
Promotional material for Tuska Festival 28.6. - 30.06.2019
in Helsinki, Finland.
<br />
Tuska Festival is the largest annual metal festival in
Helsinki. Find more info about the artists, tickets, and
venue of this year's Tuska. Learn about the newly imposed 18
year age limit as well as see press photos from previous
years of the festival.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/isisarts/forage"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="img/forage_320.jpg, img/forage_640.jpg 2x"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="img/forage_320.jpg, img/forage_640.jpg 2x"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="img/forage_640.jpg, img/forage_1280.jpg 2x"
alt="Forage cover image"
/>
</picture>
<div><cite>Forage, by Henna Askainen</cite></div>
</a>
<figcaption>
The idea for Forage came from Askainen's own experience of
arriving in the North East of England from Finland and the
rootedness she first began to feel when she had access to
the countryside.
<br />
Forage is a participatory commission with refugees and
asylum seekers now living in Newcastle and Gateshead. It is
a series of walks and conversations in landscapes that are
both strange and familiar. It provides the opportunity to
discover and recover what it means to belong to a place when
displaced from home and to experience the most ‘English’ of
our landscapes at National Trust sites across Northumberland
and Tyne and Wear. Using foraged plants, stories old and new
are interwoven into new experiences for participants, and
form the basis of a series public artworks and
interventions.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/dni/lapse/index.html"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="img/lapse_320.jpg, img/lapse_640.jpg 2x"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="img/lapse_320.jpg, img/lapse_640.jpg 2x"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="img/lapse_640.jpg, img/lapse_1280.jpg 2x"
alt="Lapse cover image"
/>
</picture>
<div><cite>Lapse, by Matt Pickering</cite></div>
</a>
<figcaption>
Told through the eyes of Martha, Lapse explores the ways our
relationship with the world changes throughout the progress
of Alzheimer’s disease.
<br />
Unfolding within her garden, Martha experiences a mosaic of
personal memories from different moments in her life,
collapsed into a continuous stream that blurs past and
present; reality and artifice.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/dni/blossomingincencebearingtrees/index.html"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="
img/blossoming_320.jpg,
img/blossoming_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/blossoming_320.jpg,
img/blossoming_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/blossoming_640.jpg,
img/blossoming_1280.jpg 2x
"
alt="Blossoming Incence Bearing Trees cover image"
/>
</picture>
<div>
<cite
>Blossoming Incence Bearing Trees, Or Unearthing His
Roots, by Lulu MacDonald</cite
>
</div>
</a>
<figcaption>
Lulu MacDonald's work Blossoming Incence-Bearing Trees,
Unearthing His Roots, is a 9-part site-specific exploration
of how images are composed and understood. Taking the
understandable symbol of a bouquet of flowers she
reinterprets through metaphor, context and composition how
we live within our still-lives within our own vases, live
and consume, with the ever new recompositioning and
transitioning between life and death, moving and stillness.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/isisarts/european_ferries"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="
img/european_ferries_320.jpg,
img/european_ferries_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/european_ferries_320.jpg,
img/european_ferries_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/european_ferries_640.jpg,
img/european_ferries_1280.jpg 2x
"
alt="European Ferries cover image"
/>
</picture>
<div><cite>European Ferries, by Willie Robb</cite></div>
</a>
<figcaption>
European Ferries is a series of photographs which focuses on
horizons and the UK's divisive cultural attitude towards
them. Robb wanted to respond to the recent decision Britain
has made to come out of the European Union. Physically the
images depict historical links connecting the UK to its
current continent but that is subject to change.
Metaphorically the photographs consider horizons and our
cultural attitude towards them.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/isisarts/thevolunteers"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="
img/thevolunteers_320.jpg,
img/thevolunteers_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/thevolunteers_320.jpg,
img/thevolunteers_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/thevolunteers_640.jpg,
img/thevolunteers_1280.jpg 2x
"
alt="The Volunteers cover image"
/>
</picture>
<div><cite>The Volunteers, by Dominic Smith</cite></div>
</a>
<figcaption>
The Volunteers is an interview with Dave Bell, Captain,
Director and Quatermaster of TVLP (Tynemouth Volunteer Life
Brigade). Using videos of the Tynemouth coast and Bell's
recollections, the piece serves as both oral history as well
as visual poem of the northern British coastline.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/seurasaari-midsummer-bonfires"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="
img/ss_bonfires_320.jpg,
img/ss_bonfires_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/ss_bonfires_320.jpg,
img/ss_bonfires_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/ss_bonfires_640.jpg,
img/ss_bonfires_1280.jpg 2x
"
alt="Seurasaari Midsummer Bonfires cover image"
/>
</picture>
<div>
<cite>Seurasaari Midsummer Bonfires, by Naomi Aro</cite>
</div>
</a>
<figcaption>
Exploring Midsummer activites on Seurasaari in Helsinki.
National costumes, dancing, artisans, and bonfires!
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/pilat/caravaggio/index.html"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="
img/caravaggio_320.jpg,
img/caravaggio_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/caravaggio_320.jpg,
img/caravaggio_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/caravaggio_640.jpg,
img/caravaggio_1280.jpg 2x
"
alt="PROJECT CARAVAGGIO cover image"
/>
</picture>
<div>
<cite
>PROJECT CARAVAGGIO, by Bozena Pilat & Wojtek
Kowalczyk</cite
>
</div>
</a>
<figcaption>
Photographer Bozena Pilat and artist Wojtek Kowalczyk have
worked on a project inspired by the master of tenebrism,
Michelangelo Merisi da Caravaggio. A modern artist, whose
domain is paper, pen and ink, plays the characters from
paintings of one of the most recognizable and dramatic
Baroque painters.
</figcaption>
</figure>
</li>
<li>
<figure>
<a
href="https://stories.getmural.io/isisarts/micropalypse"
target="_blank" rel="noopener"
>
<picture>
<source
srcset="
img/micropalypse_320.jpg,
img/micropalypse_640.jpg 2x
"
media="(max-width: 575px) and (orientation: portrait)"
/>
<source
srcset="
img/micropalypse_320.jpg,
img/micropalypse_640.jpg 2x
"
media="(max-width: 767px) and (orientation: landscape)"
/>
<img
srcset="
img/micropalypse_640.jpg,
img/micropalypse_1280.jpg 2x
"
alt="Micropalypse cover image"
/>
</picture>
<div><cite>Micropalypse, by andy_gracie</cite></div>
</a>
<figcaption>
A narrative sketch drawing from ongoing work towards a
post-apocalyptic exhibition and live cinema project
</figcaption>
</figure>
</li>
</ul>
<!-- END TEXT ON STORIES -->
</section>
</div>
<div class="col col-lg-12 col-xl-4">
<section id="downloads">
<!-- Begin Downlaods section -->
<h2>Download Mural</h2>
<ul>
<li class="mac">
<a href="Mural-0.3.1-mac.zip" class="mac-osx-download"
>Mac OSX v0.3.1</a
>
</li>
<li>
<a href="Mural-0.3.1-win32-ia32.zip" class="win-32-download"
>Windows v0.3.1 32 bit</a
>
</li>
<li>
<a href="Mural-0.3.1-win32-x64.zip" class="win-64-download"
>Windows v0.3.1 64 bit</a
>
</li>
<li>
<a href="Mural-0.3.1-amd64.deb" class="linux-download"
>Debian v0.3.1 AMD 64</a
>
</li>
<li>
<a href="Mural-0.3.1-i386.deb" class="linux-download"
>Debian v0.3.1 Intel x86</a
>
</li>
</ul>
<h3>Download the Mural user manual</h3>
<p>
The newest manual is for Mural 0.3.0. It includes information on
the features available in Mural, as well as recommended apps to
use with it and tips on getting the most out of the tool.
</p>
<p>
<a href="Mural-manual-v0.3.0.pdf" class="manual-download"
>Mural Manual v0.3.0</a
>
</p>
<!-- End Downloads section -->
</section>
<section id="newsletter-signup">
<!-- Begin MailChimp Signup Form -->
<div id="mc_embed_signup">
<form
action="https://getmural.us18.list-manage.com/subscribe/post?u=adbd68029738fc9b06e630bed&id=c2a3e8ca4c"
method="post"
id="mc-embedded-subscribe-form"
name="mc-embedded-subscribe-form"
class="validate"
target="_blank"
novalidate
>
<div id="mc_embed_signup_scroll">
<h3>Subscribe to our mailing list</h3>
<div class="indicates-required">
<span class="asterisk">*</span> indicates required
</div>
<div class="mc-field-group">
<label for="mce-EMAIL"
>Email Address <span class="asterisk">*</span></label
>
<input
type="email"
value=""
name="EMAIL"
class="required email"
id="mce-EMAIL"
/>
</div>
<div class="mc-field-group">
<label for="mce-FNAME">First Name </label>
<input
type="text"
value=""
name="FNAME"
class=""
id="mce-FNAME"
/>
</div>
<div class="mc-field-group">
<label for="mce-LNAME"
>Last Name <span class="asterisk">*</span></label
>
<input
type="text"
value=""
name="LNAME"
class="required"
id="mce-LNAME"
/>
</div>
<div id="mce-responses" class="clear">
<div
class="response"
id="mce-error-response"
style="display:none"
></div>
<div
class="response"
id="mce-success-response"
style="display:none"
></div>
</div>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div
style="position: absolute; left: -5000px;"
aria-hidden="true"
>
<input
type="text"
name="b_adbd68029738fc9b06e630bed_c2a3e8ca4c"
tabindex="-1"
value=""
/>
</div>
<div class="clear">
<input
type="submit"
value="Subscribe"
name="subscribe"
id="mc-embedded-subscribe"
class="button"
/>
</div>
</div>
</form>
</div>
<script
type="text/javascript"
src="https://s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js"
></script>
<script type="text/javascript">
(function($) {
window.fnames = new Array();
window.ftypes = new Array();
fnames[0] = "EMAIL";
ftypes[0] = "email";
fnames[1] = "FNAME";
ftypes[1] = "text";
fnames[2] = "LNAME";
ftypes[2] = "text";
})(jQuery);
var $mcj = jQuery.noConflict(true);
</script>
<!--End mc_embed_signup-->
</section>
<section id="info">
<h2>Mural License & Info</h2>
<p class="lead">
Mural is free and open source, and is licensed under the GNU
Affero General Public License (AGPL).
</p>
<p>
Funding for the initial development of Mural was provided in Round
3 of Google's Digital News Initiative Prototype Fund.
</p>
<p>
There are several ways you can get involved in the Mural project.
The main one is to use the tool to make great visual stories. You
are free to make changes or improvements to the
<a href="https://github.com/GetMural">code on Github</a>, its
documentation, or its user interface. We only ask that you share