Skip to content

Commit b4fdd7e

Browse files
committed
New look
1 parent b59ef6a commit b4fdd7e

33 files changed

+484
-104
lines changed

3dsoundworkshop.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
layout: page
33
---
44

5+
Images: http://wisp-kollektiv.de/bangaloresidency-2017
6+
57
![3D Sound Workshop poster](/assets/img/poster3dsoundworkshop.jpg)
68

79
# Composing and performing with 3D sound
@@ -106,7 +108,7 @@ Felix
106108
- __*Srishti Institute of Art, Design and Technology*__
107109
- __*Goethe-Institut-Bangalore, Bangalore Residency Program*__
108110
- __*(Art)ScienceBLR*__
109-
- __*The Indian Sonic Research Organization*__
111+
- __*The Indian Sonic Research Organisation*__
110112
- __*Wisp Kollektiv*__
111113
- __*Special thanks to Michael Romanov for Ambisonic Decoder support*__
112114

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.theisro.org

_config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
title: The Indian Sonic Research Organization
1+
title: The Indian Sonic Research Organisation
22
description: A sound research and experimental space
33
author: theisro
44
url: http://theisro.github.io/
55
excerpt_separator: <!--more-->
6-
#baseurl: /beta
7-
paginate: 10
6+
paginate: 3
87
paginate_path: /page/:num/
98

109
exclude: [
1110
'Makefile',
1211
'Gemfile',
1312
'Gemfile.lock',
14-
'README.md'
13+
'README.md',
14+
'CNAME'
1515
]
1616

1717
sass:

_includes/footer.html

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,39 @@
1-
<footer>
1+
<footer class="container-fluid">
2+
<div class="row">
3+
<div class="col-md-4 text-center">
4+
<!--<h3>The ISRO</h3>-->
5+
<img src="{{ site.baseurl }}/assets/img/logo.png" width=160>
6+
</div>
7+
<div class="col-md-4">
8+
<ul>
9+
<li><a href="/about.html">About</a></li>
10+
<li><a href="/residency.html">Residency</a></li>
11+
<li><a href="/residencyarchive.html">Past Residencies</a></li>
12+
<li><a href="/live.html">Live - Archives</a></li>
13+
</ul>
14+
</div>
15+
<div class="col-md-4">
16+
<ul>
17+
<li><a href="https://www.facebook.com/theisro/"><i class="fab fa-facebook-f"></i></a>
18+
<a href="https://twitter.com/theisro_org"><i class="fab fa-twitter"></i></a>
19+
</li>
20+
<li>
21+
<a href="https://www.instagram.com/theisro/"><i class="fab fa-instagram"></i></a>
22+
<a href="https://www.youtube.com/channel/UCBC3ydlyhviXjQBN0UqJy7g"><i class="fab fa-youtube"></i></a>
23+
</li>
24+
</ul>
25+
</div>
26+
</div>
27+
<div class="row text-center">
28+
<div class="col-md-12">
29+
&copy; The ISRO
30+
</div>
31+
</div>
232
</footer>
333

434
<script defer src="https://use.fontawesome.com/releases/v5.0.8/js/all.js" integrity="sha384-SlE991lGASHoBfWbelyBPLsUlwY1GwNDJo3jSJO04KZ33K2bwfV9YBauFfnzvynJ" crossorigin="anonymous"></script>
535
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
636
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
737
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
838
<script charset="utf-8" src="{{ site.baseurl }}/assets/js/app.js"></script>
9-
39+

_includes/head.html

+1-25
Original file line numberDiff line numberDiff line change
@@ -20,37 +20,13 @@
2020
<meta property="og:title" content="{{ page.title }}" />
2121

2222
<meta property="og:url" content="{{ site.url }}{{ site.baseurl }}{{ page.url }}" />
23-
<meta property="og:site_name" content="(Art)ScienceBLR" />
23+
<meta property="og:site_name" content="TheISRO" />
2424

2525
{% if page.tags %}
2626
{% for tag in page.tags %}
2727
<meta property="article:tag" content="{{ tag }}" />
2828
{% endfor %}
2929
{% endif %}
30-
{% if page.event_date %}
31-
<script type="application/ld+json">
32-
{
33-
"@context": "http://www.schema.org",
34-
"@type": "Event",
35-
"name": "page.title",
36-
"startDate": "{{ page.event_date }}",
37-
"location": {
38-
"@type": "Place",
39-
"name": "{{ page.location_name }}",
40-
"address": "{{ page.location }}"
41-
},
42-
"performer": [
43-
{% for performer in page.performers %}
44-
{
45-
"@type": "{{ performer.type }}",
46-
"name": "{{ performer.name }}",
47-
"sameAs": "{{ performer.url }}"
48-
}{% unless forloop.last %},{% endunless %}
49-
{% endfor %}
50-
]
51-
}
52-
</script>
53-
{% endif %}
5430
<!-- seo plugin -->
5531
{% seo %}
5632
</head>

_includes/header.html

+16-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
1-
<header class="container-fluid top-header">
2-
<div class="row">
3-
<div class="col-md-12">
4-
<a href="{{ site.baseurl }}/">
5-
{% if page.banner_img %}
6-
<img src="{{ site.baseurl }}{{ page.banner_img }}">
7-
{% else %}
8-
<img src="{{ site.baseurl }}/assets/img/isro_about_thecave.jpg">
9-
{% endif %}
10-
</a>
11-
</div>
12-
</div>
13-
</header>
14-
<div class="container-fluid">
15-
<div class="row">
16-
<div class="col-md-12">
17-
<h1>The Indian Sonic Research Organization</h1>
18-
</div>
1+
<nav class="navbar navbar-expand-lg navbar-dark">
2+
<a class="navbar-brand" href="/"><h1>The ISRO</h1></a>
3+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
4+
<span class="navbar-toggler-icon"></span>
5+
</button>
6+
7+
<div class="collapse navbar-collapse" id="navbarSupportedContent">
8+
<ul class="navbar-nav mr-auto">
9+
<li class="nav-item"><a href="/about.html">About</a></li>
10+
<li class="nav-item"><a href="/artists.html">Artists</a></li>
11+
<li class="nav-item"><a href="/residency.html">Residency</a></li>
12+
<li class="nav-item"><a href="/workshop.html">Workshops</a></li>
13+
<li class="nav-item"><a href="/archives.html">Archives</a></li>
14+
<li class="nav-item"><a href="/cave.html">Cave</a></li>
15+
</ul>
1916
</div>
20-
</div>
17+
</nav>
2118

_layouts/page.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44

55
<section class="container-fluid">
66
<div class="row">
7-
<div class="col-md-8 offset-md-4">
7+
<div class="col-md-3">
8+
&nbsp;
9+
</div>
10+
<div class="col-md-8">
811
{{ content }}
912
</div>
1013
</div>

_layouts/post.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="container-fluid">
6+
<div class="row post-image-row">
7+
<div class="col-md-12">
8+
<img src="{{ site.baseurl }}{{ page.image }}">
9+
</div>
10+
</div>
11+
<div class="row">
12+
<div class="col-md-12">
13+
{{ content }}
14+
</div>
15+
</div>
16+
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: post
3+
title: Japanese Experimental Music with Shun Owada and Shohei Amimori
4+
image: /assets/img/shun-shohei.jpg
5+
---
6+
7+
Live at February 4th, 5:30pm at Srishti N6 Campus
8+
<!--more-->
9+
10+
<iframe width="560" height="315" src="https://www.youtube.com/embed/2hJVeOD8SRo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
11+
12+
<br/>
13+
14+
<iframe width="560" height="315" src="https://www.youtube.com/embed/MZ6gBlZ9GL0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: post
3+
title: Workshop - Improvisation - February 14th, 11:00am
4+
image: /assets/img/mkm.jpg
5+
---
6+
7+
Open Workshop: Improvising with DIY electronics with Swiss electronic group MKM @ ArtScienceBLR, N6 Srishti Campus
8+
9+
Free entry.
10+
<!--more-->
11+
12+
The workshop will start with the group playing an improvised set together. Each member of the group will then discuss their practice – from the instruments they use to a theoretical and conceptual framework for their work. The workshop will conclude with a jam session with the group and participants who have brought instruments along. These can be acoustic, electronic or even non-instruments.
13+
14+
# Performance
15+
16+
February 15th, 7:00pm @ The Courtyard.
17+
18+
From harsh rhythmic noise to rich sonorities...the Swiss electronic music group MKM performs live at The Courtyard.
19+
20+
Free entry.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: post
3+
title: Reproduce Drones Session Twenty. March 16th @ Walkin Studio, 6pm-9pm
4+
image: /assets/img/mar-16-walkinstudio.png
5+
---
6+
7+
March 16th @ Walkin Studio, 6pm-9pm
8+
9+
Fee: Rs. 300/-
10+
11+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: post
3+
title: Yati Durant - Workshop/Performances July 30th-31st - venue ArtScienceBLR
4+
image: /assets/img/yati-durant-conducting.png
5+
---
6+
7+
Yati Durant (Reid School of Music, University of Edinburgh) will conduct a 3 day workshop at (Art)ScienceBLR from 30th July to 1st August. The workshop is open to designers, artists, musicians and composers.
8+
<!--more-->
9+
10+
11+
Yati Durant is a U.S. born composer, lecturer, trumpeter and conductor currently based in the UK. After receiving a commission from The Juilliard School for his string symphony The Ship, he began studies in composition at the State Conservatory of Music in Cologne, Germany with Polish composer Krzysztof Meyer. Yati holds several diplomas under Krzysztof Meyer, as well as an Electronic Composition diploma under Hans Ulrich Humpert. His critically acclaimed new score to Sergei Eisenstein’s 1925 silent film The Battleship Potemkin earned him a prestigious first Meisterklasse Konzertexam in 2006. He has also studied with George Crumb, Philip Lasser, Narcis Bonet, Lee Konitz and conducting with Jonathan Brett.
12+
13+
14+
Since 2010, Yati is Lecturer of Music, Sound and Moving Image at the Reid School of Music, University of Edinburgh and Music Director of the Edinburgh Film Music Orchestra. He is Director of the European Education Alliance for Music and Sound in Media (EEAMS) at Soundtrack Cologne. He is frequently invited to hold lectures, symposia, masterclasses and workshops in composition, composition for screen, improvisation and performance at major Conservatories and Universities across Europe, India and China.
15+
16+
17+
Yati will introduce participants to techniques first developed by the 8th century Indian philosopher Shankaracharya to develop ‘porto-linguistic’ practices that have their roots in pre-verbal, non-textual geometry.
18+
These practices will help creative practitioners from diverse disciplines (architecture, design, dance and music) to collaborate, create and produce pieces of work across fields.
19+
20+
21+
For more information on Yati, please visit: [http://www.yatidurant.com](http://www.yatidurant.com).
22+
23+
For more information about the workshop, visit: [https://artscienceblr.org](https://artscienceblr.org) & [http://www.theisro.org](http://www.theisro.org).
24+

about.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
---
22
layout: page
3+
title: About
34
---
45

5-
# Organization
6-
The Indian Sonic Research Organisation is a collective of instrument builders and artists dedicated to the proliferation of experimental music and sound art. We experiment with old and new technologies including DIY and home-made instruments made with discarded electronics and found objects. We run a community music lab where we make, perform, teach and collaborate through workshops, performances and artist residencies. Our independent record label disseminates works by Asian composers, sound artists and musicians from India and abroad.
6+
![Tanisha](/assets/img/tanisha.jpg)
7+
8+
# Organisation
9+
10+
{:.highlight-green}
11+
The Indian Sonic Research Organisation is a collective of instrument builders and artists dedicated to the proliferation of experimental music and sound art. We run a community music lab in Bangalore where we make, perform, teach and collaborate through workshops, performances and artist residencies. Our independent record label disseminates works by Asian composers, sound artists and musicians from India and abroad.
712

813
# Education
9-
The Indian Sonic Research Organisation values the sharing and dissemination of ideas through an open source model. We run workshops for adults and children that explore concepts of sound, electronics, programming and physics. We design educational kits for public distribution to emphasise the value of hands on making. Our projects and programs are fundamentally rooted in the facilitation of workshops, mentorships, apprenticeships and other educational activities. To see a list of past workshops [click here.](/education.html)
14+
The Indian Sonic Research Organisation values the sharing and dissemination of ideas through an open source model. We run workshops for adults and children that explore concepts of sound, electronics, programming and physics. We design educational kits for public distribution to emphasise the value of hands on making. Our projects and programs are fundamentally rooted in the facilitation of workshops, mentorships, apprenticeships and other educational activities. To see a list of past workshops [click here.](/workshop.html)
1015

1116
# Residencies
1217
The Indian Sonic Research Organisation offers residencies to artists, musicians, theorists, instrument builders who wish to push the boundaries of their practice. To learn more about our residencies, application procedure and past residencies [click here.](/residency.html)

artists.md

+12-7
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
---
22
layout: page
3+
title: Artists
34
---
45

5-
![Noamori](/assets/img/noamori-crop.jpg)
6+
![Ron](/assets/img/ron.jpg)
7+
8+
To apply for a residency please [click here](/residency.html).
69

710
# Current Artist in Residence
8-
__January - March 2018__
11+
__July 2019__
12+
13+
Shun Owada(JP)
914

1015

11-
[Cathy Lane](/cathylane.html)
16+
# Former Artists in Residence
1217

13-
[Viv Corringham](/vivcorringham.html)
18+
[Cathy Lane(UK)](/cathylane.html)
1419

15-
[Daniel J. Miller](/danieljmiller.html)
20+
[Viv Corringham(UK/US)](/vivcorringham.html)
1621

17-
[Otso Sorvetulla](/otsosorvetulla.html)
22+
[Daniel J. Miller(US)](/danieljmiller.html)
1823

19-
# Former Artists in Residence
24+
[Otso Sorvetulla(FI)](/otsosorvetulla.html)
2025

2126
Felix Duefel(DE)
2227

assets/css/custom/_variables.scss

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
@import url('https://fonts.googleapis.com/css?family=Lato|Source+Sans+Pro|Roboto+Slab|Roboto');
2-
$body-bg: #fff;
3-
$body-color: #000;
1+
@import url('https://fonts.googleapis.com/css?family=Montserrat');
2+
$body-bg: #000;
3+
$body-color: #fff;
44
//$body-color: #002458;
55
$color: #0f0;
66
$text-color: #000;
77
//$text-color: #002458;
8-
$font-family-base: "Roboto", "Helvetica", sans-serif !default;
9-
$font-family-sans-serif: "Roboto", "Helvetica", sans-serif !default;
10-
$font-family-serif: "Roboto Slab", serif !default;
11-
$link-color: red;
12-
$link-hover-color: blue;
8+
$font-family-base: "Montserrat", "Helvetica", sans-serif !default;
9+
$font-family-sans-serif: "Montserrat", "Helvetica", sans-serif !default;
10+
$font-family-serif: "Montserrat", serif !default;
11+
$link-color: white;
12+
$link-hover-color: red;

0 commit comments

Comments
 (0)