mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
2b0526e9f9
Summary: basically when we're on a page we have a URIPath so set that and pass it over. I wasn't super duper happy with this but it seems to be the best way to pass this data. Test Plan: verified the og:url was correct on my dev instance of phacility blog for both the main blog and individual post view Reviewers: epriestley Reviewed By: epriestley CC: chad, aran, Korvin Differential Revision: https://secure.phabricator.com/D4269
18 lines
406 B
PHP
18 lines
406 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 _e($blog->getDescription()); ?></p>
|
|
</div>
|
|
<div class="oblivious-content">
|