Skip to content

Commit ff2edb8

Browse files
committed
Implement language switcher
English translation Implement Markdown PHPMagazin 5.15 article Update README Update Silex and all depending libs Add some more skills
1 parent dc70789 commit ff2edb8

File tree

512 files changed

+57384
-238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

512 files changed

+57384
-238
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
philipp-rieber.net
22
==================
33

4-
Private Homepage von Philipp Rieber <info@philipp-rieber.net>
4+
Private homepage of Philipp Rieber <hello@philipp-rieber.net>

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"silex/silex": "~1.3",
1111
"twitter/bootstrap": "2.3.x",
1212
"gregwar/captcha": "~1.0",
13+
"erusev/parsedown": "^1.5",
1314

1415
"twig/twig": "^1.18",
1516
"swiftmailer/swiftmailer": "^5.4",

composer.lock

+40-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

+3-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ var del = require('del');
44
var Q = require('q');
55

66
var config = {
7-
assetsDir: 'src/App/Resources/assets',
7+
assetsDir: 'src/Resources/assets',
88
sassPattern: '**/*.scss',
99
production: !!plugins.util.env.production,
1010
sourceMaps: !plugins.util.env.production,
1111
bowerDir: 'vendor/bower_components',
12-
revManifestPath: 'src/App/Resources/assets/rev-manifest.json'
12+
revManifestPath: 'src/Resources/assets/rev-manifest.json'
1313
};
1414
var app = {};
1515

@@ -88,13 +88,10 @@ gulp.task('styles', function() {
8888
pipeline.add([
8989
config.assetsDir+'/css/bootstrap.scss',
9090
config.bowerDir+'/font-awesome/css/font-awesome.css',
91+
config.assetsDir+'/css/flag-icon.css',
9192
config.assetsDir+'/css/styles.scss'
9293
], 'main.css');
9394

94-
// pipeline.add([
95-
// config.assetsDir+'/sass/dinosaur.scss'
96-
// ], 'dinosaur.css');
97-
9895
return pipeline.run(app.addStyle);
9996
});
10097

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"css/main.css": "css/main-a4119f6c.css",
3+
"js/site.js": "js/site-04881c66.js"
4+
}

0 commit comments

Comments
 (0)