Skip to content

Commit e0c67b4

Browse files
committed
Add initial page with pictures and info
1 parent fb0c280 commit e0c67b4

33 files changed

+1273
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
bower_components
2+
node_modules
3+
public/*
4+
npm-debug.log

Brocfile.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
var uglifyJavaScript = require('broccoli-uglify-js');
2+
var mergeTrees = require('broccoli-merge-trees');
3+
var findBowerTrees = require('broccoli-bower');
4+
var env = require('broccoli-env').getEnv();
5+
6+
var sourceTrees = findBowerTrees();
7+
8+
var tree = new mergeTrees(sourceTrees, { overwrite: true });
9+
10+
if (env === 'production') {
11+
// minify js
12+
appJs = uglifyJavaScript(tree, {
13+
// mangle: false,
14+
// compress: false
15+
});
16+
}
17+
18+
var publicFiles = 'public';
19+
20+
module.exports = tree;

assets/thumbs/IMG_20150228_072339.jpg

29 KB
Loading
27 KB
Loading
20.4 KB
Loading
23.5 KB
Loading
24.7 KB
Loading
17.7 KB
Loading
20.8 KB
Loading
22.7 KB
Loading
19.3 KB
Loading
33.8 KB
Loading
22.7 KB
Loading
20.9 KB
Loading
26.1 KB
Loading
12.9 KB
Loading

assets/thumbs/IMG_20150301_070701.jpg

21.8 KB
Loading
16.7 KB
Loading
18.6 KB
Loading
38.8 KB
Loading
21 KB
Loading
22.6 KB
Loading
25.8 KB
Loading

bower.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "python-on-rails",
3+
"authors": [
4+
],
5+
"private": true,
6+
"ignore": [
7+
"**/.*",
8+
"node_modules",
9+
"bower_components",
10+
"test",
11+
"tests"
12+
],
13+
"dependencies": {
14+
"bootstrap-sass-official": "~3.3.3",
15+
"fontawesome": "~4.3.0",
16+
"jquery": "1.11.2"
17+
}
18+
}

convert.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
pushd assets/photos
4+
for i in *.jpg; do
5+
if [ "$i" -nt "../thumbs/$i" ]; then
6+
convert "$i" -thumbnail 400 "../thumbs/$i";
7+
fi
8+
done;
9+
popd

css/_custom-bootstrap.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// Core variables and mixins
2+
@import "variables";
3+
@import "bootstrap";

0 commit comments

Comments
 (0)