├── .dockerignore ├── static ├── favicon.ico ├── _internal │ ├── footer.html │ ├── header.html │ └── fancy.css └── assets │ └── js │ └── docs.js ├── .npmrc ├── .bowerrc ├── .gitignore ├── partials ├── breadcrumb.hbs ├── attributions.hbs ├── metadata.hbs └── notice.hbs ├── lib ├── remarkable │ ├── index.js │ └── highlighter.js └── handlebars │ └── index.js ├── circle.yml ├── bower.json ├── serve.js ├── config ├── nginx-extras │ └── Dockerfile └── nginx │ ├── sites-enabled │ └── docs.conf │ └── maps │ ├── wpd.map │ ├── meta.map │ └── main.map ├── docker-compose.yml ├── package.json ├── Makefile ├── README.md ├── layouts └── default.hbs └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | src/.git/ 2 | src/WPD/.git/ 3 | src/Meta/.git/ 4 | build/ 5 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webplatform/generator-docs/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | prefix = ./node_modules 2 | cache = ./.npm 3 | tmp = ./.tmp_npm 4 | HOME = .npmhome 5 | cwd = . 6 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "analytics": false, 3 | "directory": "static/bower_components", 4 | "tmp": "./.tmp_bower" 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .npm/ 2 | node_modules/ 3 | bower_components/ 4 | build/ 5 | npm-debug.log 6 | src/ 7 | static/assets/css/highlight.css 8 | logs/ 9 | -------------------------------------------------------------------------------- /static/_internal/footer.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 |