Skip to content

Commit

Permalink
ADD open-sans font
Browse files Browse the repository at this point in the history
  • Loading branch information
salomonelli committed Feb 1, 2017
1 parent 53242c1 commit 9d769d7
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 32 deletions.
1 change: 1 addition & 0 deletions less/style.less
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import "resume-1.less";
@import "resume-2.less";
@import "../node_modules/open-sans-fontface/open-sans.less";
@header: #4B5B6E;
@background: #CCCCCC;
@darkgrey: #343444;
Expand Down
63 changes: 32 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,34 @@
{
"name": "best-resume-ever",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "node server.js",
"start": "npm run less && npm run server",
"pdf": "bash createPDF.bash",
"pdf:win": "sh createPDF.sh",
"less": "lessc --clean-css less/style.less public/style.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalamiMitPizza/beautifulCV.git"
},
"author": "salamimipizza",
"homepage": "https://salamimitpizza.github.io/beautifulCV/",
"dependencies": {
"electron": "^1.4.15",
"electroshot": "^1.2.0",
"express": "^4.14.1",
"font-awesome": "^4.7.0",
"hogan-express": "^0.5.2",
"html-pdf": "2.1.0",
"jquery": "^3.1.1",
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"local-web-server": "1.2.6",
"mustache-express": "^1.2.4",
"path": "^0.12.7"
}
"name": "best-resume-ever",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "node server.js",
"start": "npm run less && npm run server",
"pdf": "bash createPDF.bash",
"pdf:win": "sh createPDF.sh",
"less": "lessc --clean-css less/style.less public/style.min.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalamiMitPizza/beautifulCV.git"
},
"author": "salamimipizza",
"homepage": "https://salamimitpizza.github.io/beautifulCV/",
"dependencies": {
"electron": "^1.4.15",
"electroshot": "^1.2.0",
"express": "^4.14.1",
"font-awesome": "^4.7.0",
"hogan-express": "^0.5.2",
"html-pdf": "2.1.0",
"jquery": "^3.1.1",
"less": "^2.7.2",
"less-plugin-clean-css": "^1.5.1",
"local-web-server": "1.2.6",
"mustache-express": "^1.2.4",
"open-sans-fontface": "^1.4.0",
"path": "^0.12.7"
}
}
Binary file modified public/preview/resume-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/style.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ app.engine('mustache', require('hogan-express'));
app.set('view engine', 'mustache');
app.use(express.static(path.join(__dirname, 'public')));
app.use(express.static(path.join(__dirname, 'node_modules')));
app.use(express.static(path.join(__dirname, 'node_modules/open-sans-fontface')));

app.get('/', function(req, res) {
res.render('layout', {
Expand Down

0 comments on commit 9d769d7

Please sign in to comment.