Skip to content

Commit

Permalink
Brand-new bullgit page
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinGimbel committed Jan 5, 2014
1 parent 32707d4 commit ffe9124
Show file tree
Hide file tree
Showing 40 changed files with 3,280 additions and 307 deletions.
Binary file removed .DS_Store
Binary file not shown.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.DS_Store
.DS_Store
.sass-cache
_site
node_modules
3 changes: 3 additions & 0 deletions .gitignore~
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.sass-cache
_site
node_modules
4 changes: 2 additions & 2 deletions _data/members.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
twitter: schoenwaldnils
url: schoenwald-media.de
github: schoenwaldnils
codepen: nschoenwald
codepen: schoenwaldnils
gravatar: http://www.gravatar.com/avatar/ddd025871fb3f8225031a011d5d7b08c?s=200

- name: Olly
Expand All @@ -47,7 +47,7 @@
url: myxotod.de
github: myxotod
codepen: MyXoToD
gravatar:
gravatar: http://www.gravatar.com/avatar/a284083f6f4f9446723adf3b97b90151?s=200

- name: Luky
twitter: LukyVj
Expand Down
4 changes: 3 additions & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
<title>{% if page.title %} {{ page.title }} &ndash; {% endif %} bullgit - serving finest shit since 2013 </title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="assets/css/style.css">
<script src="assets/js/main.js"></script>
<script src="assets/js/main.js"></script>
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon">
<link rel="icon" href="assets/img/favicon.png" type="image/x-icon">
</head>
<body>
<header class="site--header">
Expand Down
12 changes: 12 additions & 0 deletions _layouts/blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% include header.html %}

<section class="blog">
{% for post in site.posts %}
<article class="post">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p>{{ post.excerpt }}</p>
</article>
{% endfor %}
</section>

{% include footer.html %}
11 changes: 6 additions & 5 deletions _layouts/front-page.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{% include header.html %}


<section class="featured--wrap" id="featured">
<section class="featured--wrap" data-js="featured-project">

</section>

<section class="content--wrap projects--wrap" id="output">
<div data-column="one"></div>
<div data-column="two"></div>
<div data-column="three"></div>
<section class="content--wrap projects--wrap gw" data-js="old-projects">
<article class="g one-half medium-one-whole small-one-whole" data-column="1"></article>

<article class="g one-half medium-one-whole small-one-whole" data-column="2"></article>

</section>

{% include footer.html %}
7 changes: 7 additions & 0 deletions _posts/2013-12-20-test-post.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
layout: blog
title: test
author: Kevin
---

Some Content
30 changes: 30 additions & 0 deletions _site/Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = function(grunt) {

grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

watch: {
css: {
files: 'assets/css/*.scss',
task: 'sass'
},
},

sass: {
dist: {
options: {
watch: true,
style: 'expanded'
},
files: {
'assets/css/style.scss': 'assets/css/style.css'
}
}
}
});

grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');

grunt.registerTask('default', ['sass','watch']);
};
Binary file not shown.
133 changes: 133 additions & 0 deletions _site/assets/css/font/genericons/genericons-regular-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
194 changes: 194 additions & 0 deletions _site/assets/css/font/genericons/genericons.css

Large diffs are not rendered by default.

Loading

0 comments on commit ffe9124

Please sign in to comment.