mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
80f1d01602
Summary: Ref T9546. I only got the title to always show the blog title (better than nothing) -- showing the post title properly isn't trivial and is more work than I want to do right now. Test Plan: - Description now has remarkup. - Title now shows blog title (better than nothing). Reviewers: chad Reviewed By: chad Maniphest Tasks: T9546 Differential Revision: https://secure.phabricator.com/D14423
18 lines
419 B
PHP
18 lines
419 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><?php echo _e($title); ?></title>
|
|
|
|
<?php echo $skin->getCSSResources(); ?>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="oblivious-info">
|
|
<h1>
|
|
<a href="<?php echo _e($home_uri); ?>"><?php
|
|
echo _e($blog->getName());
|
|
?></a>
|
|
</h1>
|
|
<p><?php echo $skin->remarkup($blog->getDescription()); ?></p>
|
|
</div>
|
|
<div class="oblivious-content">
|