You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
453 B
20 lines
453 B
<?php |
|
|
|
namespace App\UnfoldBundle; |
|
|
|
use Symfony\Component\HttpKernel\Bundle\Bundle; |
|
|
|
/** |
|
* UnfoldBundle — Nostr Website Rendering Runtime |
|
* |
|
* Renders websites from Nostr content by resolving subdomains to magazine naddrs, |
|
* fetching content from the event tree, and rendering via Handlebars templates. |
|
*/ |
|
class UnfoldBundle extends Bundle |
|
{ |
|
public function getPath(): string |
|
{ |
|
return \dirname(__DIR__) . '/UnfoldBundle'; |
|
} |
|
} |
|
|
|
|