diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..efe2226 --- /dev/null +++ b/.htaccess @@ -0,0 +1,3 @@ +php_flag display_startup_errors on +php_flag display_errors on +php_flag html_errors on diff --git a/html/index.php b/html/index.php new file mode 100644 index 0000000..242fece --- /dev/null +++ b/html/index.php @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + +
+ +

+
+
+
+ + + diff --git a/lang/en.php b/lang/en.php new file mode 100644 index 0000000..59648a8 --- /dev/null +++ b/lang/en.php @@ -0,0 +1,5 @@ + 'Artificials Intelligences\' arena', + 'SITE_DESCRIPTION' => 'blah blah blah but english' +); \ No newline at end of file diff --git a/lang/fr.php b/lang/fr.php new file mode 100644 index 0000000..cb8fbfe --- /dev/null +++ b/lang/fr.php @@ -0,0 +1,5 @@ + 'Arène pour intelligences (ou persque) artificielles', + 'SITE_DESCRIPTION' => 'blah blah blah mais en francais' +); \ No newline at end of file diff --git a/src/arenas_lists.php b/src/arenas_lists.php new file mode 100644 index 0000000..71b4e4e --- /dev/null +++ b/src/arenas_lists.php @@ -0,0 +1,14 @@ + "tictactoe", + 'url' => "/tictactoe", + 'title' => "Tic Tac Toe" + ), + array( + 'id' => "Battleship", + 'url' => "/battleship", + 'title' => "bataille Navale" + ) + +); \ No newline at end of file diff --git a/src/functions.php b/src/functions.php new file mode 100644 index 0000000..b73107c --- /dev/null +++ b/src/functions.php @@ -0,0 +1,46 @@ +