Skip to content

Commit 62bd44c

Browse files
committed
no more haml
1 parent a9a6c3a commit 62bd44c

File tree

6 files changed

+30
-51
lines changed

6 files changed

+30
-51
lines changed

Diff for: Gemfile

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
source "http://rubygems.org"
22

33
gem "jekyll-assets"
4-
gem "jekyll-haml"
54
gem "jekyll"
6-
gem "haml"

Diff for: _config.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
exclude: ["Gemfile", "Gemfile.lock", "README.md"]
2-
safe: false
1+
exclude: ["Gemfile", "Gemfile.lock", "README.md"]

Diff for: _layouts/page.haml

-37
This file was deleted.

Diff for: _layouts/page.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
5+
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
6+
<html class='no-js' lang='en'>
7+
<head>
8+
<meta charset='utf-8'>
9+
<title>Hong Kong Code Camp</title>
10+
<meta content='a 24 hour hackathon organised in Hong Kong' name='description'>
11+
<meta content='programming,asia,hong kong,hackathon' name='keywords'>
12+
<meta content='Codeaholics' name='author'>
13+
<meta content='width=device-width, initial-scale=1' name='viewport'>
14+
<link href='/favicon.ico' rel='shortcut icon'>
15+
<!--[if (lt IE 9) & (!IEMobile)]>
16+
<script src='//html5shim.googlecode.com/svn/trunk/html5.js'></script>
17+
<![endif]-->
18+
</head>
19+
<body>
20+
{{ content }}
21+
<script src='//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
22+
<script>
23+
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
24+
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
25+
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
26+
s.parentNode.insertBefore(g,s)}(document,'script'));
27+
</script>
28+
</body>
29+
</html>

Diff for: _layouts/random.html

-5
This file was deleted.

Diff for: _plugins/ext.rb

-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
11
require "jekyll-assets"
2-
require "jekyll-haml"
3-
4-
require "sprockets"
5-
6-
puts "ext.rb loaded"

0 commit comments

Comments
 (0)