Skip to content

Commit 890709a

Browse files
committed
Add jekyll based landing page
1 parent 987ee34 commit 890709a

File tree

7 files changed

+697
-284
lines changed

7 files changed

+697
-284
lines changed

.gitignore

Lines changed: 619 additions & 0 deletions
Large diffs are not rendered by default.

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
title: Semantic-release
2+
markdown: kramdown
3+
encoding: utf-8

index.html renamed to _layouts/default.html

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6-
<title>semantic-release by semantic-release</title>
6+
<title>semantic-release</title>
77

8+
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
89
<link rel="stylesheet" href="stylesheets/styles.css">
910
<link rel="stylesheet" href="stylesheets/github-light.css">
1011
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
@@ -15,21 +16,19 @@
1516
<body>
1617
<div class="wrapper">
1718
<header>
18-
<h1>semantic-release</h1>
19-
<p>automated package publishing</p>
20-
21-
22-
<p class="view"><a href="https://github.com/semantic-release">View My GitHub Profile</a></p>
23-
19+
<div class="container">
20+
<h1>semantic-release</h1>
21+
<em>automated package publishing</em>
22+
</div>
2423
</header>
25-
<section>
26-
<p>soon.jpg</p>
24+
<section class="container content">
25+
{{ content }}
2726
</section>
2827
<footer>
29-
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
28+
<a href="https://github.com/semantic-release">
29+
<i class="fa fa-github"></i>
30+
</a>
3031
</footer>
3132
</div>
32-
<script src="javascripts/scale.fix.js"></script>
33-
3433
</body>
3534
</html>

index.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: default
3+
title: semantic-release
4+
---
5+
6+
The documentation is under way, meanwhile watch this talk from JSConf Budapest.
7+
The talk gives a thorough introduction of the concept of semantic-release.
8+
9+
[![JSConfBP Talk][jsconfbp-thumb]][jsconfbp-video-link]
10+
11+
12+
[jsconfbp-thumb]: https://cloud.githubusercontent.com/assets/908178/8032541/e9bf6300-0dd6-11e5-92c9-8a39211368af.png
13+
[jsconfbp-video-link]: https://www.youtube.com/watch?v=tc2UgG5L7WM&index=6&list=PLFZ5NyC0xHDaaTy6tY9p0C0jd_rRRl5Zm

javascripts/scale.fix.js

Lines changed: 0 additions & 17 deletions
This file was deleted.

stylesheets/styles.css

Lines changed: 0 additions & 255 deletions
This file was deleted.

stylesheets/styles.sass

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
---
3+
$footer-height: 80px
4+
5+
@import url(http://fonts.googleapis.com/css?family=Lato:400,300,700,300italic)
6+
7+
html
8+
position: relative
9+
min-height: 100%
10+
11+
body
12+
padding: 0
13+
margin: 0
14+
font-family: Lato, sans-serif
15+
color: #555
16+
font-weight: 300
17+
font-size: 1.5em
18+
margin-bottom: $footer-height
19+
20+
a
21+
color: #333
22+
23+
&:visited,
24+
&:active
25+
color: #777
26+
27+
28+
img
29+
max-width: 100%
30+
margin: 0.5em 0
31+
32+
header h1
33+
margin-bottom: 0.1em
34+
35+
footer
36+
padding-top: 1em
37+
font-size: 1.6em
38+
text-align: center
39+
position: absolute
40+
bottom: 0
41+
width: 100%
42+
height: $footer-height
43+
background-color: #f5f5f5
44+
45+
a, a:visited
46+
color: #333
47+
48+
.container
49+
width: 90%
50+
max-width: 800px
51+
margin: 1em auto

0 commit comments

Comments
 (0)