├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── cache ├── .gitignore └── README.md ├── composer.json ├── composer.lock ├── public ├── .htaccess ├── favicon.ico ├── icons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── site.webmanifest ├── index.php ├── robots.txt └── style.css ├── src ├── Base.php ├── JustRefs.php ├── Mediawiki.php ├── Refresh.php ├── Search.php ├── Template.php └── Topic.php └── templates ├── about.php ├── custom ├── .gitignore └── README.md ├── footer.php ├── header.php ├── home.php ├── html_head.php └── topic.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/README.md -------------------------------------------------------------------------------- /cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/cache/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/composer.lock -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/icons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/icons/site.webmanifest -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /justrefs/refresh/ 3 | -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/public/style.css -------------------------------------------------------------------------------- /src/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/src/Base.php -------------------------------------------------------------------------------- /src/JustRefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/src/JustRefs.php -------------------------------------------------------------------------------- /src/Mediawiki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/src/Mediawiki.php -------------------------------------------------------------------------------- /src/Refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/src/Refresh.php -------------------------------------------------------------------------------- /src/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/src/Search.php -------------------------------------------------------------------------------- /src/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/src/Template.php -------------------------------------------------------------------------------- /src/Topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/src/Topic.php -------------------------------------------------------------------------------- /templates/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/templates/about.php -------------------------------------------------------------------------------- /templates/custom/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /templates/custom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/templates/custom/README.md -------------------------------------------------------------------------------- /templates/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/templates/footer.php -------------------------------------------------------------------------------- /templates/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/templates/header.php -------------------------------------------------------------------------------- /templates/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/templates/home.php -------------------------------------------------------------------------------- /templates/html_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/templates/html_head.php -------------------------------------------------------------------------------- /templates/topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attogram/justrefs/HEAD/templates/topic.php --------------------------------------------------------------------------------