Initial commit

This commit is contained in:
Don Goodman-Wilson
2017-06-19 11:02:31 +02:00
committed by Don Goodman-Wilson
commit 57ad57a0e3
4 changed files with 151 additions and 0 deletions

21
LICENSE Normal file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2017 DevRelSalon
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
# website
The public website for DevRel Salon

103
index.html Normal file
View File

@@ -0,0 +1,103 @@
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>The Paris DevRel Salon</title>
<!-- Fontawesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap core CSS -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Custom styles for this template -->
<link href="https://fonts.googleapis.com/css?family=Crimson+Text|Libre+Baskerville:400,400i,700" rel="stylesheet">
<link href="navbar-fixed-top.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-101258282-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- Fixed navbar -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">The Paris DevRel Salon</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Home</a></li>
<!-- <li><a href="/about.html">About</a></li> -->
<li><a href="mailto:howdy@devrel.salon">Contact</a></li>
<li><a href="https://twitter.com/DevRelSalon"><i class="fa fa-twitter" aria-hidden="true"></i> @DevRelSalson</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<!-- Main component for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>❧ A Call to Action ❧</h1>
<p>You practice developer relations or developer marketing. Perhaps you&#39;ve been doing it for a while, and want to share stories. Perhaps you are new and aren&#39;t yet sure what it is you do. Either way, you have a story to share, and an urge to hear the stories of others. Same here; Ive got a lot of questions, and a lot of stories.</p>
<p>Lets you and me and the others do something together.</p>
<p>But not a meetup.</p>
<blockquote>
<p>Cause what the world needs now<br/>is another tech meetup<br/>like I need a hole in my head</p>
</blockquote>
<p>So lets not. Lets do something else instead. This is Paris—lets do something more egalitarian, something…I don't know, Parisian.</p>
<p>Like a salon. The salons of 17th and 18th century Paris were the most important forum for intellectual discourse of the era, and were the primary conduit for the Renaissance from Italy to the rest of Western Europe. This sounds fun.</p>
<p>What would a modern-day salon look like? More like an <a href="https://www.forbes.com/sites/rebeccabagley/2014/08/18/how-unconferences-unleash-innovative-ideas/#7069e618645b">unconference</a>. No fixed schedule, no lineup of speakers with prepared talks. Instead, well come with topics that have been on our minds of late, and find people who want to discuss them.</p>
<p>There might be a topic of the month. There will be places to sit in quiet conversation with your peers, and meet new people. There will absolutely be a chance for you to be heard, and for you to learn from others, regardless of your ability or desires to get up in front of a room and speak.</p>
<p>What do you think? Will you come join us?</p>
</div>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>

25
navbar-fixed-top.css Normal file
View File

@@ -0,0 +1,25 @@
body {
min-height: 1000px;
padding-top: 120px;
font-family: 'Crimson Text', serif;
}
h1, h2, h3, h4, .navbar {
font-family: 'Libre Baskerville', serif;
}
.navbar {
padding-top: 50px;
}
.jumbotron > h1 {
font-size: 40px;
text-align: center;
}
.icon-flipped {
transform: scaleX(-1);
-moz-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
-ms-transform: scaleX(-1);
}