├── .gitignore ├── CNAME ├── Gemfile ├── README.md ├── _config.yml ├── css.css ├── images ├── actions.jpg ├── amin.jpg ├── jeff.jpg ├── miquel.jpg ├── prendinger.jpg ├── samuel.png └── teaser.png ├── index.md └── js └── npe3lft..js /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | okutama-action.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/_config.yml -------------------------------------------------------------------------------- /css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/css.css -------------------------------------------------------------------------------- /images/actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/images/actions.jpg -------------------------------------------------------------------------------- /images/amin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/images/amin.jpg -------------------------------------------------------------------------------- /images/jeff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/images/jeff.jpg -------------------------------------------------------------------------------- /images/miquel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/images/miquel.jpg -------------------------------------------------------------------------------- /images/prendinger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/images/prendinger.jpg -------------------------------------------------------------------------------- /images/samuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/images/samuel.png -------------------------------------------------------------------------------- /images/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/images/teaser.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/index.md -------------------------------------------------------------------------------- /js/npe3lft..js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miquelmarti/Okutama-Action/HEAD/js/npe3lft..js --------------------------------------------------------------------------------