commit 748b8e02e8874c9ca61bcc67b2c1316a8594350b Author: Random Penguin <25882519-randompenguin@users.noreply.gitlab.com> Date: Sun Mar 23 14:00:16 2025 -0500 Upload New File diff --git a/postbox.php b/postbox.php new file mode 100644 index 0000000..daedf81 --- /dev/null +++ b/postbox.php @@ -0,0 +1,21 @@ + + */ + +use Friendica\Core\Hook; +use Friendica\DI; + +function postbox_install() +{ + Hook::register('head', __FILE__, 'postbox_head'); +} +function postbox_head(string &$b) +{ + // Add Postbox Styling to Header + $box_styles = __DIR__ . '/postbox.css'; + DI::page()->registerStylesheet($box_styles); +} \ No newline at end of file