Merge pull request #1 from salomonelli/master
"Git Pull" from salomonelli/best-resume-ever
This commit is contained in:
commit
137a933568
34
.travis.yml
Normal file → Executable file
34
.travis.yml
Normal file → Executable file
@ -1,22 +1,16 @@
|
||||
sudo: required
|
||||
|
||||
dist: trusty
|
||||
|
||||
language: node_js
|
||||
os:
|
||||
- linux
|
||||
node_js:
|
||||
- "8"
|
||||
|
||||
node_js: stable
|
||||
|
||||
cache:
|
||||
directories:
|
||||
- node_modules
|
||||
|
||||
before_deploy:
|
||||
- npm run build
|
||||
|
||||
deploy:
|
||||
provider: pages
|
||||
skip_cleanup: true
|
||||
github_token: $GITHUB_TOKEN
|
||||
local_dir: dist
|
||||
on:
|
||||
branch: master
|
||||
before_install:
|
||||
- export CHROME_BIN=chromium-browser
|
||||
- export DISPLAY=:99.0
|
||||
- sh -e /etc/init.d/xvfb start
|
||||
script:
|
||||
- npm i --silent
|
||||
- npm run lint
|
||||
- npm run test:export
|
||||
- npm run test:docs
|
||||
- npm run test:e2e
|
||||
|
||||
18
DEVELOPER.md
Normal file → Executable file
18
DEVELOPER.md
Normal file → Executable file
@ -31,6 +31,22 @@ Your new resume will be now reachable at localhost:8080/#/resume/TEMPLATE-NAME.
|
||||
<br>
|
||||
<br>
|
||||
|
||||
5. Export resumes as PDF with `npm run export`. Verify export of new template.
|
||||
|
||||
4. Generate previews by converting PDF-files to PNG-files with `npm run preview`.
|
||||
|
||||
5. Add preview to `/src/pages/home.vue`:
|
||||
```javascript
|
||||
<div class="preview">
|
||||
<router-link v-bind:to="'/resume/TEMPLATE-NAME'">
|
||||
<div class="preview-wrapper">
|
||||
<img src="../assets/preview/TEMPLATE-NAME.png" />
|
||||
<span>left-right</span>
|
||||
</div>
|
||||
</router-link>
|
||||
</div>
|
||||
```
|
||||
|
||||
## Fonts
|
||||
|
||||
### Icons
|
||||
@ -59,7 +75,7 @@ All fonts are installed via npm. To add a new font, search for the associated np
|
||||
|
||||
## Export
|
||||
|
||||
Resumes are being exported with [Electroshot](https://github.com/mixu/electroshot).
|
||||
Resumes are being exported with [Puppeteer](https://github.com/GoogleChrome/puppeteer).
|
||||
|
||||
### Box Shadows
|
||||
|
||||
|
||||
0
ISSUE_TEMPLATE.md
Normal file → Executable file
0
ISSUE_TEMPLATE.md
Normal file → Executable file
0
LICENCE.md
Normal file → Executable file
0
LICENCE.md
Normal file → Executable file
0
PULL_REQUEST_TEMPLATE.md
Normal file → Executable file
0
PULL_REQUEST_TEMPLATE.md
Normal file → Executable file
23
README.md
Executable file → Normal file
23
README.md
Executable file → Normal file
@ -7,6 +7,12 @@
|
||||
<br>
|
||||
</h1>
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](https://greenkeeper.io/) [](https://travis-ci.org/salomonelli/best-resume-ever)
|
||||
|
||||
</div>
|
||||
|
||||
<h4 align="center">
|
||||
:necktie: :briefcase: Build fast :rocket: and easy multiple beautiful resumes and create your best CV ever!
|
||||
<br><br>
|
||||
@ -18,6 +24,8 @@
|
||||
|
||||
<p align="left">
|
||||
<img src="src/assets/preview/resume-purple.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-side-bar-rtl.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-left-right-rtl.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-material-dark.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-left-right.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
<img src="src/assets/preview/resume-side-bar.png" width="150" style="margin-right:5px; border: 1px solid #ccc;" />
|
||||
@ -29,21 +37,20 @@
|
||||
|
||||
## How to use
|
||||
|
||||
best-resume-ever requires at least node v.8.5.
|
||||
best-resume-ever requires at least node v.8.5.0.
|
||||
|
||||
1. Clone this repository.
|
||||
|
||||
2. Run `npm install`.
|
||||
|
||||
3. Edit your personal data in `src/person.js`.
|
||||
3. Customize your resume in the `resume/` directory: edit your data `data.yml` and replace your profile-picture `id.jpg`.
|
||||
|
||||
4. Replace your profile-picture in `src/assets/person.jpg`.
|
||||
4. Preview resumes with `npm run dev`.
|
||||
|
||||
5. Preview resumes with `npm run dev`.
|
||||
5. Export with `npm run export`.
|
||||
|
||||
6. Export with `npm run export`.
|
||||
|
||||
All resumes will be exported to `/pdf`.
|
||||
All resumes will be exported to the `pdf/` folder.
|
||||
|
||||
<br>
|
||||
|
||||
@ -57,7 +64,7 @@ Please read the <a href="DEVELOPER.md">developer docs</a> on how to create or up
|
||||
|
||||
## Contribute
|
||||
|
||||
Feel free to add your own templates, language supports, fix bugs or improve the docs. Any kind of help is appreciated! If you any kind of changes to an existing template, please commit them as new templates.
|
||||
Feel free to add your own templates, language supports, fix bugs or improve the docs. Any kind of help is appreciated! If you make any kind of changes to an existing template, please commit them as new templates.
|
||||
|
||||
<br>
|
||||
|
||||
@ -67,8 +74,8 @@ Feel free to add your own templates, language supports, fix bugs or improve the
|
||||
This project uses several open source packages:
|
||||
|
||||
* <a href="https://github.com/vuejs/vue" target="_blank">Vue</a>
|
||||
* <a href="https://github.com/GoogleChrome/puppeteer" target="_blank">Puppeteer</a>
|
||||
* <a href="https://github.com/less/less.js" target="_blank">LESS</a>
|
||||
* <a href="https://github.com/mixu/electroshot" target="_blank">Electroshot</a>
|
||||
|
||||
<br>
|
||||
|
||||
|
||||
@ -1,5 +1,3 @@
|
||||
require('./check-versions')()
|
||||
|
||||
process.env.NODE_ENV = 'production'
|
||||
|
||||
var ora = require('ora')
|
||||
|
||||
@ -1,48 +0,0 @@
|
||||
var chalk = require('chalk')
|
||||
var semver = require('semver')
|
||||
var packageConfig = require('../package.json')
|
||||
var shell = require('shelljs')
|
||||
function exec (cmd) {
|
||||
return require('child_process').execSync(cmd).toString().trim()
|
||||
}
|
||||
|
||||
var versionRequirements = [
|
||||
{
|
||||
name: 'node',
|
||||
currentVersion: semver.clean(process.version),
|
||||
versionRequirement: packageConfig.engines.node
|
||||
},
|
||||
]
|
||||
|
||||
if (shell.which('npm')) {
|
||||
versionRequirements.push({
|
||||
name: 'npm',
|
||||
currentVersion: exec('npm --version'),
|
||||
versionRequirement: packageConfig.engines.npm
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = function () {
|
||||
var warnings = []
|
||||
for (var i = 0; i < versionRequirements.length; i++) {
|
||||
var mod = versionRequirements[i]
|
||||
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
|
||||
warnings.push(mod.name + ': ' +
|
||||
chalk.red(mod.currentVersion) + ' should be ' +
|
||||
chalk.green(mod.versionRequirement)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
if (warnings.length) {
|
||||
console.log('')
|
||||
console.log(chalk.yellow('To use this template, you must update following to modules:'))
|
||||
console.log()
|
||||
for (var i = 0; i < warnings.length; i++) {
|
||||
var warning = warnings[i]
|
||||
console.log(' ' + warning)
|
||||
}
|
||||
console.log()
|
||||
process.exit(1)
|
||||
}
|
||||
}
|
||||
@ -1,5 +1,3 @@
|
||||
require('./check-versions')()
|
||||
|
||||
var config = require('../config')
|
||||
if (!process.env.NODE_ENV) {
|
||||
process.env.NODE_ENV = JSON.parse(config.dev.env.NODE_ENV)
|
||||
|
||||
0
build/webpack.prod.conf.js
Normal file → Executable file
0
build/webpack.prod.conf.js
Normal file → Executable file
@ -4,8 +4,8 @@ var path = require('path')
|
||||
module.exports = {
|
||||
build: {
|
||||
env: require('./prod.env'),
|
||||
index: path.resolve(__dirname, '../dist/index.html'),
|
||||
assetsRoot: path.resolve(__dirname, '../dist'),
|
||||
index: path.resolve(__dirname, '../docs/index.html'),
|
||||
assetsRoot: path.resolve(__dirname, '../docs'),
|
||||
assetsSubDirectory: 'static',
|
||||
assetsPublicPath: '/best-resume-ever/',
|
||||
productionSourceMap: true,
|
||||
|
||||
1
docs/index.html
Executable file
1
docs/index.html
Executable file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><title>best-resume-ever</title><link href=/best-resume-ever/static/css/app.93b0b43de44566e679cbcb1192e60799.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/best-resume-ever/static/js/manifest.9e85fafdfbbcf91af5e7.js></script><script type=text/javascript src=/best-resume-ever/static/js/vendor.651023c261ca8937f2d6.js></script><script type=text/javascript src=/best-resume-ever/static/js/app.e2c878cafbb20641fa24.js></script></body></html>
|
||||
4
docs/src/static/css/app.fed28444d168a46a5bee35ce88b580f6.css
Executable file
4
docs/src/static/css/app.fed28444d168a46a5bee35ce88b580f6.css
Executable file
File diff suppressed because one or more lines are too long
1
docs/src/static/css/app.fed28444d168a46a5bee35ce88b580f6.css.map
Executable file
1
docs/src/static/css/app.fed28444d168a46a5bee35ce88b580f6.css.map
Executable file
File diff suppressed because one or more lines are too long
BIN
docs/src/static/fonts/MaterialIcons-Regular.012cf6a.woff
Executable file
BIN
docs/src/static/fonts/MaterialIcons-Regular.012cf6a.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/MaterialIcons-Regular.570eb83.woff2
Executable file
BIN
docs/src/static/fonts/MaterialIcons-Regular.570eb83.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/MaterialIcons-Regular.a37b0c0.ttf
Executable file
BIN
docs/src/static/fonts/MaterialIcons-Regular.a37b0c0.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/MaterialIcons-Regular.e79bfd8.eot
Executable file
BIN
docs/src/static/fonts/MaterialIcons-Regular.e79bfd8.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Bold.3326e4d.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-Bold.3326e4d.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Bold.5a10091.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-Bold.5a10091.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Bold.7ae9b8b.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-Bold.7ae9b8b.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Bold.8926673.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-Bold.8926673.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-BoldItalic.5aaceea.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-BoldItalic.5aaceea.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-BoldItalic.7be88e7.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-BoldItalic.7be88e7.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-BoldItalic.c36b5ac.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-BoldItalic.c36b5ac.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-BoldItalic.ea07932.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-BoldItalic.ea07932.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBold.12e2ed7.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBold.12e2ed7.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBold.19b56cf.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBold.19b56cf.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBold.5211065.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBold.5211065.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBold.561e4b6.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBold.561e4b6.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.4595d7f.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.4595d7f.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.4f44077.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.4f44077.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.5f467e7.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.5f467e7.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.bc511ba.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-ExtraBoldItalic.bc511ba.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Italic.383eba0.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-Italic.383eba0.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Italic.5250746.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-Italic.5250746.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Italic.9b30f13.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-Italic.9b30f13.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Italic.e487b7c.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-Italic.e487b7c.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Light.39d27e1.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-Light.39d27e1.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Light.8040375.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-Light.8040375.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Light.963eb32.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-Light.963eb32.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Light.ecb4572.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-Light.ecb4572.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-LightItalic.26f1e68.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-LightItalic.26f1e68.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-LightItalic.6725fc4.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-LightItalic.6725fc4.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-LightItalic.97534dd.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-LightItalic.97534dd.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-LightItalic.e7cc712.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-LightItalic.e7cc712.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Regular.5583548.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-Regular.5583548.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Regular.a35546e.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-Regular.a35546e.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Regular.ac327c4.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-Regular.ac327c4.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Regular.cd72963.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-Regular.cd72963.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Semibold.08952b0.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-Semibold.08952b0.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Semibold.0ea0450.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-Semibold.0ea0450.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Semibold.33f225b.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-Semibold.33f225b.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-Semibold.9f21442.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-Semibold.9f21442.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.1c0b4eb.ttf
Executable file
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.1c0b4eb.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.3343e54.woff2
Executable file
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.3343e54.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.da06141.eot
Executable file
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.da06141.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.ec55f26.woff
Executable file
BIN
docs/src/static/fonts/OpenSans-SemiboldItalic.ec55f26.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Black-Italic.0f629c9.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Black-Italic.0f629c9.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Black.d641109.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Black.d641109.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Bold-Italic.02d3658.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Bold-Italic.02d3658.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Bold.f5c9c1a.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Bold.f5c9c1a.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-ExtraBold-Italic.8832d30.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-ExtraBold-Italic.8832d30.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-ExtraBold.299ddfe.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-ExtraBold.299ddfe.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-ExtraLight-Italic.91fc8a2.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-ExtraLight-Italic.91fc8a2.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-ExtraLight.ebd5c80.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-ExtraLight.ebd5c80.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Light-Italic.fa415a9.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Light-Italic.fa415a9.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Light.6b562d7.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Light.6b562d7.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Medium-Italic.c966b86.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Medium-Italic.c966b86.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Medium.2e763f8.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Medium.2e763f8.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Regular-Italic.b1f58e1.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Regular-Italic.b1f58e1.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Regular.2d4cd87.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Regular.2d4cd87.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-SemiBold-Italic.4bd987d.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-SemiBold-Italic.4bd987d.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-SemiBold.e18d388.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-SemiBold.e18d388.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Thin-Italic.f8708e6.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Thin-Italic.f8708e6.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Raleway-Thin.ebd07bb.ttf
Executable file
BIN
docs/src/static/fonts/Raleway-Thin.ebd07bb.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Black.2a82f89.eot
Executable file
BIN
docs/src/static/fonts/Roboto-Black.2a82f89.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Black.2b8d692.woff2
Executable file
BIN
docs/src/static/fonts/Roboto-Black.2b8d692.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Black.44236ad.ttf
Executable file
BIN
docs/src/static/fonts/Roboto-Black.44236ad.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Black.4c3b622.woff
Executable file
BIN
docs/src/static/fonts/Roboto-Black.4c3b622.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BlackItalic.38d14dd.woff2
Executable file
BIN
docs/src/static/fonts/Roboto-BlackItalic.38d14dd.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BlackItalic.3a99796.woff
Executable file
BIN
docs/src/static/fonts/Roboto-BlackItalic.3a99796.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BlackItalic.4b7407c.eot
Executable file
BIN
docs/src/static/fonts/Roboto-BlackItalic.4b7407c.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BlackItalic.ad0f284.ttf
Executable file
BIN
docs/src/static/fonts/Roboto-BlackItalic.ad0f284.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Bold.56a76a2.ttf
Executable file
BIN
docs/src/static/fonts/Roboto-Bold.56a76a2.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Bold.ab96cca.woff2
Executable file
BIN
docs/src/static/fonts/Roboto-Bold.ab96cca.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Bold.ad140ff.woff
Executable file
BIN
docs/src/static/fonts/Roboto-Bold.ad140ff.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Bold.c8bcb1c.eot
Executable file
BIN
docs/src/static/fonts/Roboto-Bold.c8bcb1c.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BoldItalic.355e388.woff2
Executable file
BIN
docs/src/static/fonts/Roboto-BoldItalic.355e388.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BoldItalic.4b2cc52.eot
Executable file
BIN
docs/src/static/fonts/Roboto-BoldItalic.4b2cc52.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BoldItalic.a7dce23.woff
Executable file
BIN
docs/src/static/fonts/Roboto-BoldItalic.a7dce23.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-BoldItalic.d23d5bd.ttf
Executable file
BIN
docs/src/static/fonts/Roboto-BoldItalic.d23d5bd.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Light.1830791.eot
Executable file
BIN
docs/src/static/fonts/Roboto-Light.1830791.eot
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Light.37fbbba.woff
Executable file
BIN
docs/src/static/fonts/Roboto-Light.37fbbba.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Light.8e0860f.woff2
Executable file
BIN
docs/src/static/fonts/Roboto-Light.8e0860f.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-Light.a2b8c64.ttf
Executable file
BIN
docs/src/static/fonts/Roboto-Light.a2b8c64.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-LightItalic.056caea.ttf
Executable file
BIN
docs/src/static/fonts/Roboto-LightItalic.056caea.ttf
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-LightItalic.879d940.woff2
Executable file
BIN
docs/src/static/fonts/Roboto-LightItalic.879d940.woff2
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-LightItalic.c7b4e74.woff
Executable file
BIN
docs/src/static/fonts/Roboto-LightItalic.c7b4e74.woff
Executable file
Binary file not shown.
BIN
docs/src/static/fonts/Roboto-LightItalic.cdd1c48.eot
Executable file
BIN
docs/src/static/fonts/Roboto-LightItalic.cdd1c48.eot
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user