Ok, I've got most of my plugin working. Is there a static variable that returns the main CSS file of the current theme?
My Template is:
But I want to include the CSS of the theme somehow
My Template is:
<html>
<head>
<title>{$mybb->settings[bbname]} - Example Page</title>
{$headerinclude}
</head>
<body>
{$header}
<br />
<!-- Content: Start -->
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder"><tr><td class="thead"><strong>BOX NAME</strong>
</td>
</tr><tr>
<td class="trow1">BOX CONTENT</td></tr>
</table>
<!-- Content: End -->
{$footer}
</body>
</html>
But I want to include the CSS of the theme somehow
