Skip to content

Commit

Permalink
Added agenda and contact information
Browse files Browse the repository at this point in the history
  • Loading branch information
mia-aasbakken committed Apr 27, 2016
1 parent 3ccf123 commit 383ec4a
Show file tree
Hide file tree
Showing 8 changed files with 947 additions and 35 deletions.
17 changes: 16 additions & 1 deletion css/app.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions css/app.css.map

Large diffs are not rendered by default.

94 changes: 85 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,92 @@ <h3>Who can participate?</h3>
<p>Each company may invite 10 participants. We aim to have fully equal gender participation, so please invite five men and five women. Managers and other stakeholders are invited to participate in a demo session in the afternoon of day 2.</p>
<p>All cost in regards to meals and stay at the conference center is covered as part of the Hack Day. Each organisation must cover their own travel expenses to Oslo and back again.</p>

<h3>Planning and preparation</h3>
<p>This year we want to have a slightly stronger connection to our respective strategies and goals when preparing for the Hack Day. </p>
<p>We want to invite stakeholders from each of our nordic product development organisations to propose topics of strategic importance, and select 5 topics for the hack day, to focus our creative work coming up with interesting projects.</p>
<h3>Contact information</h3>
<p>
<strong>Transportation to Voksenåsen:</strong>
<br/>Astrid Falck-Ytter (+4790584745)

</p>
<p>
<strong>During the event:</strong>
<br/>Vincent Reilly (+4740203533)
<br/>Øyvind Holmstad (+4741929678)
<br/>Mia Aasbakken (+4740213134)
</p>

<h4>Planning step 1: Agree on topics</h4>
<p>During March we aim to facilitate the proposal of relevant of useful topics for the hack days. The stakeholders from each product development organisation will be involved in this. The Goal is to select up to 5 topics by the end of march.</p>

<h4>Planning step 2: Hack Day project brain storming and tentative team formation</h4>
<p>Starting of a month before the Hack Day we aim to invite all participants to brainstorm and add suggestions for exciting hack day project with common denominators.</p>
<p>In the weeks leading up to the Hack Day we want to shape and lead a process for consolidating and select the best of breed projects to include the hack day.</p>
<h3>Agenda</h3>
<h4>Thursday the 27th:</h4>
<p>
<table class="agenda">
<thead>
<tr>
<th>Time</th>
<th>Topic</th>
</tr>
</thead>
<tbody>
<tr>
<td>10:00</td>
<td>Greetings and Welcome</td>
</tr>
<tr>
<td>10:30</td>
<td>Project pitching and team formation</td>
</tr>
<tr>
<td>11:30</td>
<td>Lunch</td>
</tr>
<tr>
<td>12:30</td>
<td>Self organized team work</td>
</tr>
<tr>
<td>19:00</td>
<td>Dinner</td>
</tr>
<tr>
<td>21:00</td>
<td>Self organized team work and informal social gathering as teams call it a night</td>
</tr>
</tbody>
</table>
</p>

<h4>Friday the 28th:</h4>
<p>
<table class="agenda">
<thead>
<tr>
<th>Time</th>
<th>Topic</th>
</tr>
</thead>
<tbody>
<tr>
<td>07:00-09:00</td>
<td>Breakfast</td>
</tr>
<tr>
<td>09:00-12:00</td>
<td>Self organized team work and team wrap up</td>
</tr>
<tr>
<td>12:00-12:45</td>
<td>Lunch</td>
</tr>
<tr>
<td>13:00</td>
<td>Bus leaves from Conference Centre to NRK</td>
</tr>
<tr>
<td>14:00-16:00</td>
<td>Team demonstrations and best project award at NRK</td>
</tr>
</tbody>
</table>
</p>
<p>The agenda is also available as <a href="http://nordichackday.github.io/docs/nordic_hack_day_2016_agenda.pdf">PDF</a>.</p>
</div>
</section>

Expand Down
1 change: 1 addition & 0 deletions sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
@import "base/animations";
@import "base/icons";
@import "base/base";
@import "base/tables";
@import "base/typography";

// Layout
Expand Down
26 changes: 26 additions & 0 deletions sass/base/_tables.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
table.agenda {
border: 1px solid $color-nhc-green;
thead {
th {
text-align: left;
padding: 10px;
color: white;
background: $color-nhc-green;
}
}

tbody {
tr {
td {
padding: 10px;
padding-right: 20px;
text-align: left;
}
&:nth-child(even) {
td {
background: $color-grey;
}
}
}
}
}
1 change: 1 addition & 0 deletions sass/base/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ $color-red: #ff635c;
$color-blue: #00d3e4;
$color-white: #fff;
$color-black: #222;
$color-nhc-green: #00A6A5;

// Base
$base-font-color: $color-black;
Expand Down
2 changes: 1 addition & 1 deletion sass/layout/_header.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.header {
background-color: #00b8f1;
background-color: $color-nhc-green;
text-align: center;
position: relative;
margin-bottom: 3rem;
Expand Down
Loading

0 comments on commit 383ec4a

Please sign in to comment.