Community day, project partners, and tickets placeholder page added

This commit is contained in:
Johan Thelin 2020-01-31 11:00:41 +01:00
parent 5b8aa11056
commit 46047daf69
8 changed files with 367 additions and 1 deletions

View file

@ -32,6 +32,13 @@
</li> </li>
<li class="nav-item">
<a class="nav-link" href="communityday.html">Community Day
</a>
</li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="contribute.html">Contribute <a class="nav-link" href="contribute.html">Contribute

195
2020/communityday.html Normal file
View file

@ -0,0 +1,195 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>foss-north 2020</title>
<link rel="icon" type="image/png" href="favicon.ico">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head><body><nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="https://foss-north.se/"><img src="images/brand-logo.png" /></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="communityday.html">Community Day
<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="contribute.html">Contribute
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="coc.html">Code of Conduct
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="nav-item"><a class="nav-link" href="http://foss-north.se/">More foss events</a></li>
</ul>
</div>
</nav><div class="container">
<h1>Community Day</h1>
<p>The foss-north community day is a day of community activities.</p>
<p>We have invited a number of projects to Gothenburg and provided them with venues. Now it is up to you to visit them and explore!</p>
<p><b>This day is free of charge</b>, but we would be happy if you could <a href="https://www.meetup.com/foss-gbg/events/268297362">RSVP this meetup</a> for us to know how many your are. Some of the projects also require you <b>register your participation</b>. See the descriptions below for more information.</p>
<p>Notice that you do need to get one for the rest of the conference. Get your's <a href="tickets.html">here</a>!</p>
<p><i>Please notice that the list below is tentative!</i></p>
<style>
img.olTileImage {
max-width: none;
}
</style>
<h2>Map</h2>
<div id="mapdiv" style="height: 600px;"></div>
<div class="bodybreak">&nbsp;</div>
<h2>Projects</h2>
<a name="freebsd" class="offsetanchor"></a>
<div class="row speakerrow">
<div class="col-md-3">
<div class="speaker-photo"><a href="https://www.freebsd.org/"><img class="sp-image" src="images/project-freebsd.png" alt="FreeBSD"></a></div>
&nbsp;
<div class="speaker-photo"><a href="https://b3.se/"><img class="sp-image" src="images/venue-b3.png" alt="B3 Consulting"></a></div>
</div>
<div class="col-md-9">
<div class="name"><a class="projectlink" href="https://www.freebsd.org/">FreeBSD</a></div>
<div class="links">
<a href="https://www.freebsdfoundation.org/about/project/">About</a>
</div>
<div class="abstract">
T.B.D.
</div>
<p class="left tight"><b>Venue address:</b></p>
<div class="bio">
B3 Consulting Göteborg<br />
Kämpegatan 6<br />
411 04 Göteborg<br />
</div>
</div>
</div>
<a name="kde" class="offsetanchor"></a>
<div class="row speakerrow">
<div class="col-md-3">
<div class="speaker-photo"><a href="https://www.kde.org/"><img class="sp-image" src="images/project-kde.png" alt="KDE"></a></div>
</div>
<div class="col-md-9">
<div class="name"><a class="projectlink" href="https://www.kde.org/">KDE</a></div>
<div class="abstract">
T.B.D.
</div>
<p class="left tight"><b>Venue address:</b></p>
<div class="bio">
</div>
</div>
</div>
<script src="js/OpenLayers.js"></script>
<script>
map = new OpenLayers.Map("mapdiv", { controls: [] });
map.addLayer(new OpenLayers.Layer.OSM("OSM", ["https://a.tile.openstreetmap.org/${z}/${x}/${y}.png", "https://b.tile.openstreetmap.org/${z}/${x}/${y}.png", "https://c.tile.openstreetmap.org/${z}/${x}/${y}.png"] ));
map.addControl(new OpenLayers.Control.PanZoomBar());
map.addControl(new OpenLayers.Control.Permalink());
map.addControl(new OpenLayers.Control.Permalink('permalink'));
var markers = new OpenLayers.Layer.Markers( "Markers" );
map.addLayer(markers);
var projection = new OpenLayers.Projection("EPSG:4326");
var icon = new OpenLayers.Icon("images/brand-logo.png");
var marker;
/* Start of loop */
marker = new OpenLayers.Marker(new OpenLayers.LonLat( 11.97361, 57.71509 ).transform(projection, map.getProjectionObject()), icon.clone());
marker.events.register("click", marker, function() { location.hash = "#freebsd"; });
markers.addMarker(marker);
/* End of loop */
/* Start of loop */
marker = new OpenLayers.Marker(new OpenLayers.LonLat( , ).transform(projection, map.getProjectionObject()), icon.clone());
marker.events.register("click", marker, function() { location.hash = "#kde"; });
markers.addMarker(marker);
/* End of loop */
map.setCenter(new OpenLayers.LonLat(11.9766646, 57.689343).transform(projection, map.getProjectionObject()), 13);
</script>
</div>
<div class="footer">
foss-north and foss-gbg are arranged by Free Open Source Software North Conferences ek.f&ouml;r.<br />
Contact: info -at- foss-gbg.se.
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script></body>
</html>

View file

@ -32,6 +32,13 @@
</li> </li>
<li class="nav-item">
<a class="nav-link" href="communityday.html">Community Day
</a>
</li>
<li class="nav-item active"> <li class="nav-item active">
<a class="nav-link" href="contribute.html">Contribute <a class="nav-link" href="contribute.html">Contribute

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

BIN
2020/images/project-kde.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
2020/images/venue-b3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

View file

@ -33,6 +33,13 @@
</li> </li>
<li class="nav-item">
<a class="nav-link" href="communityday.html">Community Day
</a>
</li>
<li class="nav-item"> <li class="nav-item">
<a class="nav-link" href="contribute.html">Contribute <a class="nav-link" href="contribute.html">Contribute
@ -59,7 +66,34 @@
<h1>Announcing foss-north 2020</h1> <h1>Announcing foss-north 2020</h1>
<p>foss-north 2020 will run from March 29 - April 1 in Gothenburg, Sweden. It will consist of one community day filled with workshops, unconferences, hackathons, and fun, then two conference days, and end with a day of training sessions. We are currently looking for sponsors!</p> <p>foss-north is a free / open source conference covering both software and hardware from the technical perspective. Hosted in Gothenburg between Copenhagen, Oslo, and Stockholm, with an international airport, we provide a meeting place for the Nordic foss communities and will bring together great speakers with a great audience.</p>
<p>The event will run from <strong>March 29 - April 1</strong> at Chalmers Conference Centre in <strong>Gothenburg, Sweden</strong>.</p>
<div class="bodybreak">&nbsp;</div>
<h2>What, When, and Where</h2>
<div class="row">
<div class="col-md-4">
<div class="toptitle">Community Day</div>
<div class="topsub">March 29</div>
<p>A day of workshops, dev sprints, install fests and hackathons. We invite all FOSS projects to participate and will find you a venue. Guests are welcome to visit the activities during the day.</p>
<p><b><a href="communityday.html">Free of charge - learn more here!</a></b></p>
</div>
<div class="col-md-4">
<div class="toptitle">Conference Days</div>
<div class="topsub">March 30-31</div>
<p>Two days of fully catered, dual track conference with a technical focus. We bring speakers and guests from all over the world to provide the best possible contents for our audience.</p>
<p>Ticket sales will open soon!</p>
</div>
<div class="col-md-4">
<div class="toptitle">Training Day</div>
<div class="topsub">April 1</div>
<p>One day of top quality training sessions. We bring the best teachers to our venue for an additional one day training of your choice.</p>
<p>Ticket sales will open soon!</p>
</div>
</div>
<div class="bodybreak">&nbsp;</div> <div class="bodybreak">&nbsp;</div>
@ -292,6 +326,52 @@
</div>
</div>
<div>
<div class="row sponsorrow">
<div class="col-md-2">&nbsp;</div>
<div class="col-md-4">
<a href="https://www.freebsd.org/"><img class="sponsor" src="images/project-freebsd.png" alt="FreeBSD"></a>
</div>
<div class="col-md-4">
<a href="https://www.kde.org/"><img class="sponsor" src="images/project-kde.png" alt="KDE"></a>
</div>
</div> </div>
</div> </div>

77
2020/tickets.html Normal file
View file

@ -0,0 +1,77 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>foss-north 2020</title>
<link rel="icon" type="image/png" href="favicon.ico">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head><body><nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="https://foss-north.se/"><img src="images/brand-logo.png" /></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="communityday.html">Community Day
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contribute.html">Contribute
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="coc.html">Code of Conduct
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="nav-item"><a class="nav-link" href="http://foss-north.se/">More foss events</a></li>
</ul>
</div>
</nav><div class="container">
<h1>Tickets</h1>
<p>The tickets sales will open very shortly.</p>
</div>
<div class="footer">
foss-north and foss-gbg are arranged by Free Open Source Software North Conferences ek.f&ouml;r.<br />
Contact: info -at- foss-gbg.se.
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script></body>
</html>