├── .deployment ├── .gitignore ├── LICENSE ├── README.md ├── config.toml ├── content ├── about.md ├── charter.md ├── faq.md ├── index-include-1.md ├── index-include-2.md ├── index.md ├── pressrelease-july-2015.md └── pressrelease.md ├── deploy.sh ├── layouts ├── _default │ └── single.html ├── index.html └── partials │ ├── content.html │ ├── disqus.html │ ├── footer.html │ ├── header.html │ ├── header_index.html │ └── pagination.html ├── static ├── css │ └── style.css └── images │ ├── default.png │ ├── docker_logo.svg │ ├── favicon-16x16.png │ ├── lfcollabprojects_logo_color.png │ ├── logos │ ├── .DS_Store │ ├── AmazonWebservices_Logo.svg │ ├── Apcera-logo-dark.png │ ├── Cisco_logo.svg │ ├── ClusterHQ.svg │ ├── Datera.svg │ ├── EMC_Corporation_logo.svg │ ├── Fujitsu-Logo.svg │ ├── Goldman_Sachs.svg │ ├── HP_New_Logo_2D.svg │ ├── Huawei.svg │ ├── IBM_logo.svg │ ├── Intel-logo.svg │ ├── Joyent-logo.png │ ├── Linux_Foundation_logo.png │ ├── Logo_Google_2013_Official.svg │ ├── Microsoft_logo_(2012).svg │ ├── Sysdig_Logo.svg │ ├── TwitterLogo.svg │ ├── VerizonLabs.svg │ ├── Vmware.svg │ ├── apcera.svg │ ├── att.jpg │ ├── coreos_logo.svg │ ├── docker_logo.svg │ ├── kismatic-logo.png │ ├── kismatic-logo.svg │ ├── kyup.svg │ ├── mesosphere_logo.png │ ├── midokura.png │ ├── nutanix.svg │ ├── oracle.png │ ├── oracle.svg │ ├── pivotal.svg │ ├── polyverse.png │ ├── polyverse.svg │ ├── rancher_logo.png │ ├── red-hat-logotype.svg │ ├── resinio.svg │ └── suse.png │ ├── ocf_background.png │ ├── ocf_background_144.png │ ├── ocf_background_144_full.png │ ├── ocp_icon-02.svg │ ├── ocp_icon-02_white-02.svg │ └── run_icon-01.svg ├── themes ├── .DS_Store ├── .gitmodules └── material-design │ ├── .DS_Store │ ├── LICENSE.md │ ├── README.md │ ├── archetypes │ └── default.md │ ├── images │ ├── screenshot.png │ └── tn.png │ ├── layouts │ ├── _default │ │ ├── list.html │ │ └── single.html │ ├── index.html │ └── partials │ │ ├── content.html │ │ ├── disqus.html │ │ ├── footer.html │ │ ├── header.html │ │ └── pagination.html │ ├── static │ ├── .DS_Store │ ├── css │ │ ├── .DS_Store │ │ ├── materialize.min.css │ │ └── style.css │ ├── font │ │ ├── material-design-icons │ │ │ ├── LICENSE.txt │ │ │ ├── Material-Design-Icons.eot │ │ │ ├── Material-Design-Icons.svg │ │ │ ├── Material-Design-Icons.ttf │ │ │ ├── Material-Design-Icons.woff │ │ │ └── Material-Design-Icons.woff2 │ │ └── roboto │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ ├── images │ │ ├── default.png │ │ ├── facebook-dreamstale25.png │ │ ├── feed-dreamstale27.png │ │ ├── github2-dreamstale35.png │ │ ├── gplus48x48.png │ │ └── twitter-dreamstale71.png │ └── js │ │ ├── init.js │ │ └── materialize.min.js │ └── theme.toml └── web.config /.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = bash deploy.sh 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/config.toml -------------------------------------------------------------------------------- /content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/about.md -------------------------------------------------------------------------------- /content/charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/charter.md -------------------------------------------------------------------------------- /content/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/faq.md -------------------------------------------------------------------------------- /content/index-include-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/index-include-1.md -------------------------------------------------------------------------------- /content/index-include-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/index-include-2.md -------------------------------------------------------------------------------- /content/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/index.md -------------------------------------------------------------------------------- /content/pressrelease-july-2015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/pressrelease-july-2015.md -------------------------------------------------------------------------------- /content/pressrelease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/content/pressrelease.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/deploy.sh -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/partials/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/partials/content.html -------------------------------------------------------------------------------- /layouts/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/partials/disqus.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/header_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/partials/header_index.html -------------------------------------------------------------------------------- /layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/layouts/partials/pagination.html -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/default.png -------------------------------------------------------------------------------- /static/images/docker_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/docker_logo.svg -------------------------------------------------------------------------------- /static/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/favicon-16x16.png -------------------------------------------------------------------------------- /static/images/lfcollabprojects_logo_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/lfcollabprojects_logo_color.png -------------------------------------------------------------------------------- /static/images/logos/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/.DS_Store -------------------------------------------------------------------------------- /static/images/logos/AmazonWebservices_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/AmazonWebservices_Logo.svg -------------------------------------------------------------------------------- /static/images/logos/Apcera-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Apcera-logo-dark.png -------------------------------------------------------------------------------- /static/images/logos/Cisco_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Cisco_logo.svg -------------------------------------------------------------------------------- /static/images/logos/ClusterHQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/ClusterHQ.svg -------------------------------------------------------------------------------- /static/images/logos/Datera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Datera.svg -------------------------------------------------------------------------------- /static/images/logos/EMC_Corporation_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/EMC_Corporation_logo.svg -------------------------------------------------------------------------------- /static/images/logos/Fujitsu-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Fujitsu-Logo.svg -------------------------------------------------------------------------------- /static/images/logos/Goldman_Sachs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Goldman_Sachs.svg -------------------------------------------------------------------------------- /static/images/logos/HP_New_Logo_2D.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/HP_New_Logo_2D.svg -------------------------------------------------------------------------------- /static/images/logos/Huawei.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Huawei.svg -------------------------------------------------------------------------------- /static/images/logos/IBM_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/IBM_logo.svg -------------------------------------------------------------------------------- /static/images/logos/Intel-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Intel-logo.svg -------------------------------------------------------------------------------- /static/images/logos/Joyent-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Joyent-logo.png -------------------------------------------------------------------------------- /static/images/logos/Linux_Foundation_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Linux_Foundation_logo.png -------------------------------------------------------------------------------- /static/images/logos/Logo_Google_2013_Official.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Logo_Google_2013_Official.svg -------------------------------------------------------------------------------- /static/images/logos/Microsoft_logo_(2012).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Microsoft_logo_(2012).svg -------------------------------------------------------------------------------- /static/images/logos/Sysdig_Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Sysdig_Logo.svg -------------------------------------------------------------------------------- /static/images/logos/TwitterLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/TwitterLogo.svg -------------------------------------------------------------------------------- /static/images/logos/VerizonLabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/VerizonLabs.svg -------------------------------------------------------------------------------- /static/images/logos/Vmware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/Vmware.svg -------------------------------------------------------------------------------- /static/images/logos/apcera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/apcera.svg -------------------------------------------------------------------------------- /static/images/logos/att.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/att.jpg -------------------------------------------------------------------------------- /static/images/logos/coreos_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/coreos_logo.svg -------------------------------------------------------------------------------- /static/images/logos/docker_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/docker_logo.svg -------------------------------------------------------------------------------- /static/images/logos/kismatic-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/kismatic-logo.png -------------------------------------------------------------------------------- /static/images/logos/kismatic-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/kismatic-logo.svg -------------------------------------------------------------------------------- /static/images/logos/kyup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/kyup.svg -------------------------------------------------------------------------------- /static/images/logos/mesosphere_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/mesosphere_logo.png -------------------------------------------------------------------------------- /static/images/logos/midokura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/midokura.png -------------------------------------------------------------------------------- /static/images/logos/nutanix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/nutanix.svg -------------------------------------------------------------------------------- /static/images/logos/oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/oracle.png -------------------------------------------------------------------------------- /static/images/logos/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/oracle.svg -------------------------------------------------------------------------------- /static/images/logos/pivotal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/pivotal.svg -------------------------------------------------------------------------------- /static/images/logos/polyverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/polyverse.png -------------------------------------------------------------------------------- /static/images/logos/polyverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/polyverse.svg -------------------------------------------------------------------------------- /static/images/logos/rancher_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/rancher_logo.png -------------------------------------------------------------------------------- /static/images/logos/red-hat-logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/red-hat-logotype.svg -------------------------------------------------------------------------------- /static/images/logos/resinio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/resinio.svg -------------------------------------------------------------------------------- /static/images/logos/suse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/logos/suse.png -------------------------------------------------------------------------------- /static/images/ocf_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/ocf_background.png -------------------------------------------------------------------------------- /static/images/ocf_background_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/ocf_background_144.png -------------------------------------------------------------------------------- /static/images/ocf_background_144_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/ocf_background_144_full.png -------------------------------------------------------------------------------- /static/images/ocp_icon-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/ocp_icon-02.svg -------------------------------------------------------------------------------- /static/images/ocp_icon-02_white-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/ocp_icon-02_white-02.svg -------------------------------------------------------------------------------- /static/images/run_icon-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/static/images/run_icon-01.svg -------------------------------------------------------------------------------- /themes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/.DS_Store -------------------------------------------------------------------------------- /themes/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/.gitmodules -------------------------------------------------------------------------------- /themes/material-design/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/.DS_Store -------------------------------------------------------------------------------- /themes/material-design/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/LICENSE.md -------------------------------------------------------------------------------- /themes/material-design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/README.md -------------------------------------------------------------------------------- /themes/material-design/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/archetypes/default.md -------------------------------------------------------------------------------- /themes/material-design/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/images/screenshot.png -------------------------------------------------------------------------------- /themes/material-design/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/images/tn.png -------------------------------------------------------------------------------- /themes/material-design/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/_default/list.html -------------------------------------------------------------------------------- /themes/material-design/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/_default/single.html -------------------------------------------------------------------------------- /themes/material-design/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/index.html -------------------------------------------------------------------------------- /themes/material-design/layouts/partials/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/partials/content.html -------------------------------------------------------------------------------- /themes/material-design/layouts/partials/disqus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/partials/disqus.html -------------------------------------------------------------------------------- /themes/material-design/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/partials/footer.html -------------------------------------------------------------------------------- /themes/material-design/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/partials/header.html -------------------------------------------------------------------------------- /themes/material-design/layouts/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/layouts/partials/pagination.html -------------------------------------------------------------------------------- /themes/material-design/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/.DS_Store -------------------------------------------------------------------------------- /themes/material-design/static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/css/.DS_Store -------------------------------------------------------------------------------- /themes/material-design/static/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/css/materialize.min.css -------------------------------------------------------------------------------- /themes/material-design/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/css/style.css -------------------------------------------------------------------------------- /themes/material-design/static/font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /themes/material-design/static/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /themes/material-design/static/font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /themes/material-design/static/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /themes/material-design/static/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /themes/material-design/static/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /themes/material-design/static/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /themes/material-design/static/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/images/default.png -------------------------------------------------------------------------------- /themes/material-design/static/images/facebook-dreamstale25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/images/facebook-dreamstale25.png -------------------------------------------------------------------------------- /themes/material-design/static/images/feed-dreamstale27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/images/feed-dreamstale27.png -------------------------------------------------------------------------------- /themes/material-design/static/images/github2-dreamstale35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/images/github2-dreamstale35.png -------------------------------------------------------------------------------- /themes/material-design/static/images/gplus48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/images/gplus48x48.png -------------------------------------------------------------------------------- /themes/material-design/static/images/twitter-dreamstale71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/images/twitter-dreamstale71.png -------------------------------------------------------------------------------- /themes/material-design/static/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/js/init.js -------------------------------------------------------------------------------- /themes/material-design/static/js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/static/js/materialize.min.js -------------------------------------------------------------------------------- /themes/material-design/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/themes/material-design/theme.toml -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/web/HEAD/web.config --------------------------------------------------------------------------------