mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-17 22:06:59 -04:00
19 lines
326 B
PHTML
19 lines
326 B
PHTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<?php echo self::headTitle (); ?>
|
|
<?php echo self::headStyle (); ?>
|
|
<?php echo self::headScript (); ?>
|
|
</head>
|
|
<body>
|
|
<div id="global">
|
|
<?php $this->partial ('aside'); ?>
|
|
|
|
<div id="main">
|
|
<?php $this->render (); ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|