├── templates ├── html_standard_intro ├── fail_plaintext ├── redirect ├── fail ├── index ├── not_yet_a_page ├── html_footer ├── auth_error ├── action_on_user_complete ├── delete_confirmation ├── view ├── action_on_user_confirmation ├── html_startcontent ├── pushed_to_main ├── search ├── made_pull_request ├── added_to_pull_request ├── edit_existing_pull_request ├── html_header └── edit ├── .gitignore ├── static_files ├── link.svg ├── ghwikipp.css └── pandoc.css ├── LICENSE.txt ├── pandoc-filter.lua ├── config.php.sample ├── pandoc-filter-offline.lua ├── make_offline_archive.php ├── README.md └── index.php /templates/html_standard_intro: -------------------------------------------------------------------------------- 1 | @include html_header@ 2 | @include html_startcontent@ 3 | -------------------------------------------------------------------------------- /templates/fail_plaintext: -------------------------------------------------------------------------------- 1 | 2 | @title@ 3 | 4 | @httpresponse@ 5 | 6 | @message@ 7 | 8 | -------------------------------------------------------------------------------- /templates/redirect: -------------------------------------------------------------------------------- 1 | @include html_standard_intro@ 2 | 3 | @message@ 4 | 5 | @include html_footer@ 6 | 7 | 8 | -------------------------------------------------------------------------------- /templates/fail: -------------------------------------------------------------------------------- 1 | @include html_standard_intro@ 2 | 3 |
@message@
6 | 7 | @include html_footer@ 8 | 9 | -------------------------------------------------------------------------------- /templates/index: -------------------------------------------------------------------------------- 1 | @include html_standard_intro@ 2 | 3 |No such page '@page@' yet.
6 |Click here to create it!
7 | 8 | @include html_footer@ 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | cooked 2 | raw 3 | trusted 4 | admins 5 | blocked 6 | config.php 7 | git_repo_lock 8 | tmp_commit_message.txt 9 | id_ed25519 10 | id_ed25519.pub 11 | offline 12 | static_files/logo.png 13 | static_files/favicon.ico 14 | static_files/offline 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /templates/html_footer: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |