]> dev.renevier.net Git - syj.git/blobdiff - application/controllers/FaqController.php
faq
[syj.git] / application / controllers / FaqController.php
diff --git a/application/controllers/FaqController.php b/application/controllers/FaqController.php
new file mode 100644 (file)
index 0000000..8a6881c
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+/*  This file is part of Syj, Copyright (c) 2010 Arnaud Renevier,
+    and is published under the AGPL license. */
+
+class FaqController extends Zend_Controller_Action
+{
+    public function indexAction() {
+        $this->view->headLink()->appendStylesheet('css/generic.css');
+        $this->view->headLink()->appendStylesheet('css/faq.css');
+        $this->view->headTitle($this->view->translate("Frequently asked questions"));
+    }
+}