├── .editorconfig ├── .gitignore ├── README.md ├── index.html ├── invisible-background.png └── logo.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/slogan/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/slogan/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/slogan/HEAD/index.html -------------------------------------------------------------------------------- /invisible-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/slogan/HEAD/invisible-background.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egoist/slogan/HEAD/logo.png --------------------------------------------------------------------------------