Initial commit of eclipse.org built with hugo
Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
parents
No related branches found
No related tags found
Showing
- .github/ISSUE_TEMPLATE/bug_report.md 35 additions, 0 deletions.github/ISSUE_TEMPLATE/bug_report.md
- .github/ISSUE_TEMPLATE/feature_request.md 17 additions, 0 deletions.github/ISSUE_TEMPLATE/feature_request.md
- .gitignore 12 additions, 0 deletions.gitignore
- .travis.yml 15 additions, 0 deletions.travis.yml
- CODE_OF_CONDUCT.md 80 additions, 0 deletionsCODE_OF_CONDUCT.md
- CONTRIBUTING.md 35 additions, 0 deletionsCONTRIBUTING.md
- LICENSE 277 additions, 0 deletionsLICENSE
- NOTICE.md 69 additions, 0 deletionsNOTICE.md
- README.md 64 additions, 0 deletionsREADME.md
- config.toml 70 additions, 0 deletionsconfig.toml
- content/_index.md 16 additions, 0 deletionscontent/_index.md
- data/featuredstory.yml 1 addition, 0 deletionsdata/featuredstory.yml
- layouts/.gitkeep 0 additions, 0 deletionslayouts/.gitkeep
- layouts/shortcodes/pages/home/content.html 48 additions, 0 deletionslayouts/shortcodes/pages/home/content.html
- less/_variables.less 13 additions, 0 deletionsless/_variables.less
- less/styles.less 16 additions, 0 deletionsless/styles.less
- netlify.toml 33 additions, 0 deletionsnetlify.toml
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 32 additions, 0 deletionspackage.json
- static/mix-manifest.json 4 additions, 0 deletionsstatic/mix-manifest.json
.github/ISSUE_TEMPLATE/bug_report.md
0 → 100644
.github/ISSUE_TEMPLATE/feature_request.md
0 → 100644
.gitignore
0 → 100644
.travis.yml
0 → 100644
CODE_OF_CONDUCT.md
0 → 100644
CONTRIBUTING.md
0 → 100644
LICENSE
0 → 100644
NOTICE.md
0 → 100644
README.md
0 → 100644
config.toml
0 → 100644
content/_index.md
0 → 100644
data/featuredstory.yml
0 → 100644
layouts/.gitkeep
0 → 100644
layouts/shortcodes/pages/home/content.html
0 → 100644
less/_variables.less
0 → 100644
less/styles.less
0 → 100644
netlify.toml
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "eclipsefdn-eclipse-org", | ||
"description": "Source code for new eclipse.org website", | ||
"main": "webpack.min.js", | ||
"author": "Christopher Guindon", | ||
"license": "EPL-2.0", | ||
"version": "0.0.0", | ||
"bugs": { | ||
"url": "https://github.com/eclipsefdn/eclipse.org/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/eclipsefdn/eclipse.org.git" | ||
}, | ||
"scripts": { | ||
"dev": "NODE_ENV=development webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"watch": "NODE_ENV=development webpack --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"production": "NODE_ENV=production webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
"install": "NODE_ENV=production npm run production", | ||
"postinstall": "npm run fetch_projects && npm run yaml2json_projects", | ||
"fetch_projects": "node node_modules/eclipsefdn-hugo-solstice-theme/bin/projects/index.js -l data -u https://projects.eclipse.org/api/projects", | ||
"yaml2json_projects": "node node_modules/js-yaml/bin/js-yaml.js -c data/eclipsefdn_projects.yaml | node node_modules/json-minify/index.js > static/js/projects.json", | ||
"disallow_robots_txt": "echo \"User-agent: *\r\nDisallow: /\" > layouts/robots.txt", | ||
"build_netlify": "NODE_ENV=production npm run disallow_robots_txt && npm run production" | ||
}, | ||
"dependencies": { | ||
"eclipsefdn-hugo-solstice-theme": "0.0.110", | ||
"js-yaml": "^3.13.1", | ||
"json-minify": "^1.0.0" | ||
} | ||
} |
static/mix-manifest.json
0 → 100644
Please register or sign in to comment