├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── data.json ├── index.php ├── markdown.php ├── robots.txt ├── style.css └── templates ├── about.php ├── by-categories.php ├── changes.php ├── item.php ├── main.php ├── search.php └── tiles.php /.gitignore: -------------------------------------------------------------------------------- 1 | /config.php 2 | /data.json.cached 3 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/README.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/data.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/index.php -------------------------------------------------------------------------------- /markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/markdown.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | Crawl-delay: 10 4 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/style.css -------------------------------------------------------------------------------- /templates/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/templates/about.php -------------------------------------------------------------------------------- /templates/by-categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/templates/by-categories.php -------------------------------------------------------------------------------- /templates/changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/templates/changes.php -------------------------------------------------------------------------------- /templates/item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/templates/item.php -------------------------------------------------------------------------------- /templates/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/templates/main.php -------------------------------------------------------------------------------- /templates/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/templates/search.php -------------------------------------------------------------------------------- /templates/tiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaizek/vim-like-pile/HEAD/templates/tiles.php --------------------------------------------------------------------------------