ADD open-sans font
This commit is contained in:
parent
53242c1dfa
commit
9d769d726d
@ -1,5 +1,6 @@
|
|||||||
@import "resume-1.less";
|
@import "resume-1.less";
|
||||||
@import "resume-2.less";
|
@import "resume-2.less";
|
||||||
|
@import "../node_modules/open-sans-fontface/open-sans.less";
|
||||||
@header: #4B5B6E;
|
@header: #4B5B6E;
|
||||||
@background: #CCCCCC;
|
@background: #CCCCCC;
|
||||||
@darkgrey: #343444;
|
@darkgrey: #343444;
|
||||||
|
|||||||
63
package.json
63
package.json
@ -1,33 +1,34 @@
|
|||||||
{
|
{
|
||||||
"name": "best-resume-ever",
|
"name": "best-resume-ever",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"server": "node server.js",
|
"server": "node server.js",
|
||||||
"start": "npm run less && npm run server",
|
"start": "npm run less && npm run server",
|
||||||
"pdf": "bash createPDF.bash",
|
"pdf": "bash createPDF.bash",
|
||||||
"pdf:win": "sh createPDF.sh",
|
"pdf:win": "sh createPDF.sh",
|
||||||
"less": "lessc --clean-css less/style.less public/style.min.css"
|
"less": "lessc --clean-css less/style.less public/style.min.css"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/SalamiMitPizza/beautifulCV.git"
|
"url": "git+https://github.com/SalamiMitPizza/beautifulCV.git"
|
||||||
},
|
},
|
||||||
"author": "salamimipizza",
|
"author": "salamimipizza",
|
||||||
"homepage": "https://salamimitpizza.github.io/beautifulCV/",
|
"homepage": "https://salamimitpizza.github.io/beautifulCV/",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"electron": "^1.4.15",
|
"electron": "^1.4.15",
|
||||||
"electroshot": "^1.2.0",
|
"electroshot": "^1.2.0",
|
||||||
"express": "^4.14.1",
|
"express": "^4.14.1",
|
||||||
"font-awesome": "^4.7.0",
|
"font-awesome": "^4.7.0",
|
||||||
"hogan-express": "^0.5.2",
|
"hogan-express": "^0.5.2",
|
||||||
"html-pdf": "2.1.0",
|
"html-pdf": "2.1.0",
|
||||||
"jquery": "^3.1.1",
|
"jquery": "^3.1.1",
|
||||||
"less": "^2.7.2",
|
"less": "^2.7.2",
|
||||||
"less-plugin-clean-css": "^1.5.1",
|
"less-plugin-clean-css": "^1.5.1",
|
||||||
"local-web-server": "1.2.6",
|
"local-web-server": "1.2.6",
|
||||||
"mustache-express": "^1.2.4",
|
"mustache-express": "^1.2.4",
|
||||||
"path": "^0.12.7"
|
"open-sans-fontface": "^1.4.0",
|
||||||
}
|
"path": "^0.12.7"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 89 KiB |
2
public/style.min.css
vendored
2
public/style.min.css
vendored
File diff suppressed because one or more lines are too long
@ -12,6 +12,7 @@ app.engine('mustache', require('hogan-express'));
|
|||||||
app.set('view engine', 'mustache');
|
app.set('view engine', 'mustache');
|
||||||
app.use(express.static(path.join(__dirname, 'public')));
|
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')));
|
||||||
|
app.use(express.static(path.join(__dirname, 'node_modules/open-sans-fontface')));
|
||||||
|
|
||||||
app.get('/', function(req, res) {
|
app.get('/', function(req, res) {
|
||||||
res.render('layout', {
|
res.render('layout', {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user