Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions assets/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ code .operator { color: gray; }
/* Header Layer */

.header-wrapper { margin-bottom: -15px; }
header > .logo { display: flex; flex: 0 0 auto; align-items: center; padding: 0; }
header > .logo > img { max-width: 60px; }
header > .logo > h1 { margin: 0; margin-left: 18px; padding: 0; height: 26px; }
header > .logo > h1 > img { height: 100%; }
.logo { display: flex; flex: 0 0 auto; align-items: center; padding: 0; }
.logo > img { max-width: 60px; }
.logo > h1 { margin: 0; margin-left: 18px; padding: 0; height: 26px; }
.logo > h1 > img { height: 100%; }

nav { flex: none; display: flex; flex-direction: row-reverse; }
nav > * { flex: 0 0 auto; padding: 10px 20px; margin: 0; text-decoration: none; color: rgb(74, 64, 136); transition: background 0.1s ease-out; }
Expand Down Expand Up @@ -233,6 +233,11 @@ nav > .play-cta { margin: 0; padding: 10px 20px; color: white; }
.contact > *:last-child:hover { background: rgb(117, 115, 190); }
.contact > *:last-child:active { background: rgb(142, 140, 215); }

.community h2 { font-size: 24px; margin-bottom: 20px; }
.community h3 { font-size: 20px; margin-bottom: 20px;}
.community ul { margin: 0px 0px 20px 20px; list-style-type: circle;}
.community p {margin-bottom: 20px;}

@media (max-width: 640px) {
.contact { flex-direction: column; }
}
72 changes: 72 additions & 0 deletions community.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!doctype html>
<html>
<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>Eve</title>
<meta name="description" content="Eve: Programming designed for humans.">
<link rel="stylesheet" type="text/css" href="/assets/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="/assets/css/base.css">
<link href="/assets/img/favicon.png" rel="icon" type="image/png" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css' />
</head>
<body>
<div class="layer-wrapper header-wrapper">
<header class="layer">
<a href="http://witheve.com">
<div class="logo">
<img src="https://witheve.github.io/assets/images/logo_square.png" />
<h1><img alt="EVE" src="/assets/img/eve.svg" /></h1>
</div>
</a>
<div class="flex-spacer"></div>
<nav>
<a class="btn rounded cta secondary play-cta" href="http://play.witheve.com">Play</a>
<!--<a href="#">Gallery</a>-->
<a href="http://incidentalcomplexity.com">Blog</a>
<a href="http://docs.witheve.com">Docs</a>
<a href="">Community</a>
</nav>
</header>
</div>

<div class="layer-wrapper community-wrapper">
<section class="layer community">
<div>
<h2>Community</h2>
<h3>Get Involved</h3>
<p>The Eve community is small but constantly growing, and everyone is welcome!</p>
<ul>
<li>Join or start a discussion on our <a href="https://groups.google.com/forum/#!forum/eve-talk">mailing list</a>.</li>
<li>Chat with us on our <a href="https://slack-signup.witheve.com/">community Slack channel</a>.</li>
<li>File issues and submit Pull Requests to our <a href="https://github.com/witheve/Eve">Github repository</a>.</li>
<li>Impact the future of Eve by getting involved with our <a href="https://github.com/witheve/rfcs">Request for Comments</a> process.</li>
<li>Read our <a href="http://incidentalcomplexity.com/">development blog</a>.</li>
<li>Follow and reach out to us <a href="https://twitter.com/with_eve">@with_eve on Twitter</a>.</li>
</ul>
<h3>How to Contribute</h3>
<p>The best way to contribute right now is to write Eve code and report your experiences. <a href="https://groups.google.com/forum/#!forum/eve-talk">Let us know</a> what kind of programs you’re trying to write, what barriers you are facing in writing code (both mental and technological), and any errors you encounter along the way.</p>
<h3>How to File an Issue</h3>
<p>We welcome you to file any issues you encounter with Eve at our <a href="https://github.com/witheve">Github repository</a>. Before you file an issue, please take a look to see if the issue already exists. When you file an issue, please include:</p>
<ul>
<li>The steps needed to reproduce the bug.</li>
<li>Versions of Eve, your browser, and your OS.</li>
<li>If possible, a minimal Eve program that reproduces the bug.</li>
</ul>
</div>
</section>
</div>

<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-74222157-3', 'auto');
ga('send', 'pageview');

</script>
</body>
</html>
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h1><img alt="EVE" src="/assets/img/eve.svg" /></h1>
<!--<a href="#">Gallery</a>-->
<a href="http://incidentalcomplexity.com">Blog</a>
<a href="http://docs.witheve.com">Docs</a>
<a href="https://groups.google.com/forum/#!forum/eve-talk">Community</a>
<a href="/community.html">Community</a>
</nav>
</header>
</div>
Expand Down