mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
26f7425ee2
Summary: Allow skins to serve arbitrary resources without needing to be mapped, so we can have a vibrant community of amateur skinners. For "basic" skins, just put all the "css/" on the page always. Includes an image to prove that works. @vrana, pretty sure this has no impact outside of Phame but it does change Celerity so it might be to blame if there's any weirdness with static resources. Test Plan: {F21341} {F21340} Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T1373 Differential Revision: https://secure.phabricator.com/D3719
18 lines
401 B
PHP
18 lines
401 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($uri); ?>"><?php
|
|
echo _e($blog->getName());
|
|
?></a>
|
|
</h1>
|
|
<p><?php echo _e($blog->getDescription()); ?></p>
|
|
</div>
|
|
<div class="oblivious-content">
|