17 lines
331 B
PHP
Executable File
17 lines
331 B
PHP
Executable File
<?php
|
|
class StaticController extends ApplicationController
|
|
{
|
|
protected function init()
|
|
{
|
|
$this->setLayout('bare');
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
if (CONFIG()->skip_homepage)
|
|
$this->redirectTo('post#index');
|
|
else
|
|
$this->post_count = Post::fast_count();
|
|
}
|
|
}
|