Skip to content

Commit ed5d24b

Browse files
committed
- Basic configuration etc
1 parent f0f1c36 commit ed5d24b

13 files changed

+105
-38
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
3+
LOG
4+
5+
_LOG

.yesjekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Content of this file doesn't matter

Makefile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
JEKYLL=jekyll --server --auto &> _LOG &
3+
4+
restart:
5+
killall ruby; \
6+
sleep 1; \
7+
$(JEKYLL)
8+
9+
start:
10+
$(JEKYLL)
11+
stop:
12+
killall ruby

_README

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
Site generated with Jekyll.
3+
4+
Briefly, Jekyll is run both locally on the server, and transforms all contents in this folder,
5+
except file starting with '_' and places it in _site. Note that _site is not pushed, the sources
6+
are.
7+
8+
To test locally, do
9+
10+
make start

_config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
safe: true
2+
exclude: Makefile
3+
lsi: true
4+
pygments: true

_layouts/post.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Open HackSpace Stockholm</title>
6+
7+
<link rel="stylesheet" href="/css/styles.css">
8+
<link rel="stylesheet" href="/css/pygment_trac.css">
9+
</head>
10+
<body>
11+
<div class="wrapper">
12+
13+
<header>
14+
<h1>Open HackSpace Stockholm</h1>
15+
</header>
16+
17+
<section>
18+
{{ content }}
19+
</section>
20+
21+
<footer>
22+
</footer>
23+
</div>
24+
<script src="/js/scale.fix.js"></script>
25+
26+
</body>
27+
</html>

_posts/2013-01-22-foo.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: post
3+
title: Blogging Like a Hacker
4+
---
5+
6+
7+
## Open HackSpace 30 jan
8+
9+
Hej vänner,
10+
11+
Nästa Open HackSpace blir Ons 30 jan kl 19:00 på KMH, run A389.
12+
13+
### Program:
14+
15+
* Hans presenterar Faust.
16+
17+
> Faust är ett funktionellt språk för signalprocessering som kan användas för att bygga filter eller andra effekter.
18+
> Det genererar effektiv C++-kod för många arkitekturer inklusive AU, VST, LADSPA, LV2, SuperCollider,
19+
> MaxMSP, PureData med flera.
20+
>
21+
> För mer info se <http://faust.grame.fr>. Ladda gärna ner programmet i förväg.
22+
23+
24+
* Öppen tid
25+
26+
27+
Mvh
28+
Hans och David
File renamed without changes.
File renamed without changes.

foo.md

+2-18
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,7 @@ title: Blogging Like a Hacker
44
---
55

66

7-
### Open HackSpace 30 jan
7+
## Foo
88

9-
Hej vänner,
9+
This is a top dir file!
1010

11-
Nästa Open HackSpace blir Ons 30 jan kl 19:00 på KMH, run A389.
12-
13-
Program:
14-
15-
* Hans presenterar Faust.
16-
17-
Faust är ett funktionellt språk för signalprocessering utvecklat vid Grame
18-
i Lyon, Frankrike. Det genererar effektiv C++-kod för många arkitekturer
19-
inklusive AU, VST, LADSPA, LV2, SuperCollider, MaxMSP, PureData med flera.
20-
21-
För mer info se http://faust.grame.fr. Ladda gärna ner programmet i förväg.
22-
23-
* Öppen tid.
24-
25-
Mvh
26-
Hans och David

index.html

+10-19
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,28 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6-
<title>Open HackSpace Stockholm by openhackspace</title>
7-
8-
<link rel="stylesheet" href="stylesheets/styles.css">
9-
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
10-
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
11-
<!--[if lt IE 9]>
12-
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
13-
<![endif]-->
5+
<title>Open HackSpace Stockholm</title>
6+
<link rel="stylesheet" href="css/styles.css">
147
</head>
158
<body>
169
<div class="wrapper">
10+
1711
<header>
1812
<h1>Open HackSpace Stockholm</h1>
19-
<p></p>
20-
21-
22-
<p class="view"><a href="https://github.com/openhackspace">View My GitHub Profile</a></p>
23-
13+
<p>Write something here?<p>
14+
<!-- <p class="view"><a href="https://github.com/openhackspace">View My GitHub Profile</a></p> -->
2415
</header>
2516
<section>
2617
<h2>Open HackSpace Stockholm</h2>
27-
28-
<p>Test site.</p>
18+
<p>Test site.</p>
19+
<p><a href="2013/01/22/foo.html">Our first post!</a></p>
2920
</section>
3021
<footer>
3122
<p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
3223
</footer>
3324
</div>
34-
<script src="javascripts/scale.fix.js"></script>
35-
25+
<script src="js/scale.fix.js"></script>
26+
3627
</body>
3728
</html>
File renamed without changes.

params.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
{"body":"## Open HackSpace Stockholm\r\n\r\nTest site.","google":"","note":"Don't delete this file! It's used internally to help with page regeneration.","name":"Open HackSpace Stockholm","tagline":""}
1+
{ body: '## Open HackSpace Stockholm\r\n\r\nTest site.',
2+
google: '',
3+
note: 'Don\'t delete this file! It\'s used internally to help with page regeneration.',
4+
name: 'Open HackSpace Stockholm',
5+
tagline: ''
6+
}

0 commit comments

Comments
 (0)