├── .analysis_options ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── screenshot.jpg ├── bin └── sitegen.dart ├── downloads └── simple.tgz ├── lib ├── sitegen.dart └── src │ ├── Application.dart │ ├── CommandManager.dart │ ├── Config.dart │ ├── Generator.dart │ ├── Init.dart │ └── Options.dart ├── pubspec.yaml ├── samples └── simple │ ├── .gitignore │ ├── .sitegen │ ├── html │ │ ├── _content │ │ │ ├── about │ │ │ │ └── index.html │ │ │ ├── assets │ │ │ │ ├── images │ │ │ │ │ ├── android-desktop.png │ │ │ │ │ ├── favicon.png │ │ │ │ │ └── ios-desktop.png │ │ │ │ └── styles │ │ │ │ │ └── styles.scss │ │ │ ├── features.html │ │ │ ├── index.html │ │ │ ├── main.dart │ │ │ ├── markdown.md │ │ │ ├── special │ │ │ │ ├── template.html │ │ │ │ └── xtreme.html │ │ │ └── technology.html │ │ ├── _data │ │ │ ├── families.json │ │ │ ├── items.json │ │ │ ├── menu.json │ │ │ ├── sitemap.json │ │ │ └── xmen.yaml │ │ ├── _partials │ │ │ ├── cards │ │ │ │ └── wide.html │ │ │ ├── header.html │ │ │ └── list.html │ │ └── _templates │ │ │ ├── default.html │ │ │ └── info_page.html │ └── site.yaml │ ├── etc │ ├── dart.crt │ └── dart.key │ ├── pubspec.yaml │ └── web │ ├── about │ └── index.html │ ├── assets │ ├── images │ │ ├── android-desktop.png │ │ ├── favicon.png │ │ └── ios-desktop.png │ └── styles │ │ └── styles.scss │ ├── features.html │ ├── index.html │ ├── main.dart │ ├── markdown.html │ ├── special │ ├── template.html │ └── xtreme.html │ └── technology.html └── tool ├── grind.dart └── scripts ├── analyze-sample.sh └── tgzsample /.analysis_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/.analysis_options -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/assets/screenshot.jpg -------------------------------------------------------------------------------- /bin/sitegen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/bin/sitegen.dart -------------------------------------------------------------------------------- /downloads/simple.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/downloads/simple.tgz -------------------------------------------------------------------------------- /lib/sitegen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/lib/sitegen.dart -------------------------------------------------------------------------------- /lib/src/Application.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/lib/src/Application.dart -------------------------------------------------------------------------------- /lib/src/CommandManager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/lib/src/CommandManager.dart -------------------------------------------------------------------------------- /lib/src/Config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/lib/src/Config.dart -------------------------------------------------------------------------------- /lib/src/Generator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/lib/src/Generator.dart -------------------------------------------------------------------------------- /lib/src/Init.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/lib/src/Init.dart -------------------------------------------------------------------------------- /lib/src/Options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/lib/src/Options.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /samples/simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.gitignore -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/about/index.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/assets/images/android-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/assets/images/android-desktop.png -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/assets/images/favicon.png -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/assets/images/ios-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/assets/images/ios-desktop.png -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/assets/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/assets/styles/styles.scss -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/features.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/index.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/main.dart -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/markdown.md -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/special/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/special/template.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/special/xtreme.html: -------------------------------------------------------------------------------- 1 | ~~~ -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_content/technology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_content/technology.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_data/families.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_data/families.json -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_data/items.json -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_data/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_data/menu.json -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_data/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_data/sitemap.json -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_data/xmen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_data/xmen.yaml -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_partials/cards/wide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_partials/cards/wide.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_partials/header.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_partials/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_partials/list.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_templates/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_templates/default.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/html/_templates/info_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/html/_templates/info_page.html -------------------------------------------------------------------------------- /samples/simple/.sitegen/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/.sitegen/site.yaml -------------------------------------------------------------------------------- /samples/simple/etc/dart.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/etc/dart.crt -------------------------------------------------------------------------------- /samples/simple/etc/dart.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/etc/dart.key -------------------------------------------------------------------------------- /samples/simple/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/pubspec.yaml -------------------------------------------------------------------------------- /samples/simple/web/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/about/index.html -------------------------------------------------------------------------------- /samples/simple/web/assets/images/android-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/assets/images/android-desktop.png -------------------------------------------------------------------------------- /samples/simple/web/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/assets/images/favicon.png -------------------------------------------------------------------------------- /samples/simple/web/assets/images/ios-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/assets/images/ios-desktop.png -------------------------------------------------------------------------------- /samples/simple/web/assets/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/assets/styles/styles.scss -------------------------------------------------------------------------------- /samples/simple/web/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/features.html -------------------------------------------------------------------------------- /samples/simple/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/index.html -------------------------------------------------------------------------------- /samples/simple/web/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/main.dart -------------------------------------------------------------------------------- /samples/simple/web/markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/markdown.html -------------------------------------------------------------------------------- /samples/simple/web/special/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/special/template.html -------------------------------------------------------------------------------- /samples/simple/web/special/xtreme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/special/xtreme.html -------------------------------------------------------------------------------- /samples/simple/web/technology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/samples/simple/web/technology.html -------------------------------------------------------------------------------- /tool/grind.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/tool/grind.dart -------------------------------------------------------------------------------- /tool/scripts/analyze-sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/tool/scripts/analyze-sample.sh -------------------------------------------------------------------------------- /tool/scripts/tgzsample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeMitterer/dart-sitegen/HEAD/tool/scripts/tgzsample --------------------------------------------------------------------------------