18 changed files with 404 additions and 36 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
namespace App\Controller; |
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
||||
use Symfony\Component\HttpFoundation\Response; |
||||
use Symfony\Component\Routing\Attribute\Route; |
||||
|
||||
class StaticController extends AbstractController |
||||
{ |
||||
#[Route('/about')] |
||||
public function about(): Response |
||||
{ |
||||
return $this->render('static/about.html.twig'); |
||||
} |
||||
|
||||
#[Route('/roadmap')] |
||||
public function roadmap(): Response |
||||
{ |
||||
return $this->render('static/roadmap.html.twig'); |
||||
} |
||||
|
||||
#[Route('/pricing')] |
||||
public function pricing(): Response |
||||
{ |
||||
return $this->render('static/pricing.html.twig'); |
||||
} |
||||
|
||||
#[Route('/tos')] |
||||
public function tos(): Response |
||||
{ |
||||
return $this->render('static/tos.html.twig'); |
||||
} |
||||
} |
||||
@ -1 +1,8 @@
@@ -1 +1,8 @@
|
||||
<p>{{ "now"|date("Y") }} Newsroom</p> |
||||
<div class="footer-links"> |
||||
<a href="{{ path('app_static_about') }}">About</a> - |
||||
<a href="{{ path('app_static_roadmap') }}">Roadmap</a> - |
||||
{# <a href="{{ path('app_static_pricing') }}">Pricing</a> -#} |
||||
<a href="{{ path('app_static_tos') }}">Terms of service</a> |
||||
{# <a href="https://geyser.fund/project/newsroom?hero=nuapuki">Decent Newsroom - Geyser fund</a>#} |
||||
</div> |
||||
<p>{{ "now"|date("Y") }} Decent Newsroom - Preprint</p> |
||||
|
||||
@ -0,0 +1,34 @@
@@ -0,0 +1,34 @@
|
||||
{% extends 'base.html.twig' %} |
||||
|
||||
{% block nav %} |
||||
{% endblock %} |
||||
|
||||
{% block body %} |
||||
<h1>About Decent Newsroom</h1> |
||||
<h2>Rebuilding Trust in Journalism</h2> |
||||
|
||||
<p>The internet, and especially social media, made news instant and abundant—but also cheap and unreliable. The value of simply reporting what happened and where has dropped to zero, buried under waves of misinformation, clickbait, and AI-generated noise. Worse, sorting truth from falsehood now costs more than spreading lies.</p> |
||||
|
||||
<p>Decent Newsroom is our answer to this crisis. We are building a curated, decentralized magazine featuring high-quality, long-form journalism published on Nostr.</p> |
||||
|
||||
<h2>How It Works</h2> |
||||
<dl> |
||||
<dt><strong>Curated Excellence</strong></dt> |
||||
<dd>We showcase a selection of featured articles.</dd> |
||||
|
||||
<dt><strong>Indexed & Searchable</strong></dt> |
||||
<dd>Every article in Decent Newsroom is easily discoverable, improving access for readers and exposure for authors.</dd> |
||||
<dd>Simple search is available to logged-in users.</dd> |
||||
<dd>Semantic search is in development.</dd> |
||||
|
||||
<dt><strong>Open to Writers & Publishers</strong> <span class="badge">Soon</span></dt> |
||||
<dd>Content creators can request indexing for their work, making it searchable and eligible for inclusion.</dd> |
||||
</dl> |
||||
|
||||
<h2>Why It Matters</h2> |
||||
<p>The age of the newsroom isn’t over—it’s just evolving. We believe in bringing back editorial standards, collaboration, and high-value reporting in a decentralized way. Decent Newsroom is here to cut through the noise and rebuild trust in digital journalism.</p> |
||||
|
||||
<br> |
||||
<p>To support us and get early access to the future of publishing, visit our crowdfunding page <a href="https://geyser.fund/project/newsroom" target="_blank">Geyser fund - Newsroom</a>.</p> |
||||
|
||||
{% endblock %} |
||||
@ -0,0 +1,43 @@
@@ -0,0 +1,43 @@
|
||||
{% extends 'base.html.twig' %} |
||||
|
||||
{% block nav %} |
||||
{% endblock %} |
||||
|
||||
{% block body %} |
||||
<h1>Pricing</h1> |
||||
|
||||
<p>Choose a plan that fits your publishing needs.</p> |
||||
|
||||
<div class="price-list"> |
||||
<div class="card"> |
||||
<h3>Scoop Seeker</h3> |
||||
<p class="price">Free</p> |
||||
<ul class="features"> |
||||
<li>Read all the articles featured in the Newsroom magazine</li> |
||||
</ul> |
||||
<button disabled="disabled">Get Started</button> |
||||
</div> |
||||
|
||||
<div class="card"> |
||||
<h3>Publisher</h3> |
||||
<p class="price">5.000 sats/month</p> |
||||
<ul class="features"> |
||||
<li>Submit indexing requests for priority indexing</li> |
||||
<li>Access to built-in content editor</li> |
||||
<li>Content search</li> |
||||
</ul> |
||||
<button disabled="disabled">Subscribe</button> |
||||
</div> |
||||
|
||||
<div class="card"> |
||||
<h3>Curator</h3> |
||||
<p class="price">15.000 sats/month</p> |
||||
<ul class="features"> |
||||
<li>Create and manage your own magazines</li> |
||||
<li>Advanced discovery tools</li> |
||||
<li>Featured magazine placement</li> |
||||
</ul> |
||||
<button disabled="disabled">Subscribe</button> |
||||
</div> |
||||
</div> |
||||
{% endblock %} |
||||
@ -0,0 +1,60 @@
@@ -0,0 +1,60 @@
|
||||
{% extends 'base.html.twig' %} |
||||
|
||||
{% block nav %} |
||||
{% endblock %} |
||||
|
||||
{% block body %} |
||||
<h1>Roadmap: The Future of Decent Newsroom</h1> |
||||
<p>We are building a decentralized, high-value journalism platform step by step. Each phase unlocks new features, empowering writers, publishers, and readers to engage with quality, independent reporting in a whole new way.</p> |
||||
|
||||
<div class="roadmap-section"> |
||||
<h2>v0.1.0 – <strong>Preprint</strong> <span class="badge badge__secondary"><small>Current</small></span></h2> |
||||
<div class="milestone"> |
||||
<h3>A first glimpse into the future of journalism</h3> |
||||
<p>This early version of First Edition Newsroom is all about discovery. We’re launching a sample magazine to showcase what’s possible.</p> |
||||
<ul> |
||||
<li>Hand-curated, high-quality articles in magazine format</li> |
||||
<li>Full-text search to find the stories that matter to you</li> |
||||
<li>No content editor or user submissions yet</li> |
||||
</ul> |
||||
<p>Preprint is just the beginning.</p> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="roadmap-section"> |
||||
<h2>v0.2.0 – <strong>First Edition</strong> <span class="badge badge__secondary"><small>Soon</small></span></h2> |
||||
<div class="milestone"> |
||||
<h3>The real newsroom takes shape. Writers publish. Readers support. Journalism thrives.</h3> |
||||
<p>This milestone version introduces key features that bring Decent Newsroom to life:</p> |
||||
<ul> |
||||
<li>Zaps</li> |
||||
<li>Search and indexing requests enabled – writers and publishers can request inclusion</li> |
||||
<li>Payable subscriptions and indexing via Lightning invoices</li> |
||||
<li>Built-in content editor – publishers can create directly on the platform</li> |
||||
</ul> |
||||
<p>With First Edition, journalism becomes more than just content — it becomes an ecosystem.</p> |
||||
<p></p> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="roadmap-section"> |
||||
<h2>v0.3.0 – <strong>Newsstand</strong></h2> |
||||
<div class="milestone"> |
||||
<h3>Curate. Publish. Own your newsroom.</h3> |
||||
<p>At this stage, Decent Newsroom evolves into a true platform for independent journalism. Not only can creators publish, but they can also curate their own magazines.</p> |
||||
<ul> |
||||
<li>Users can create and manage their own curated publications</li> |
||||
<li>Collaborative publishing tools – editors, writers, and photographers can work together</li> |
||||
<li>Expanded discovery and personalized reading experiences</li> |
||||
</ul> |
||||
<p>Your news, your way. Newsstand transforms First Edition into a powerful hub for decentralized journalism, driven by the community.</p> |
||||
</div> |
||||
</div> |
||||
|
||||
<h2>The Journey Ahead</h2> |
||||
<p>Every step we take brings us closer to a new era of independent, decentralized journalism. Decent Newsroom isn’t just another publishing platform — it’s a movement to rebuild trust, quality, and collaboration in media.</p> |
||||
<p>First Edition is coming soon. Be part of it.</p> |
||||
<br> |
||||
<p>To support us and get early access to the future of publishing, visit our crowdfunding page <a href="https://geyser.fund/project/newsroom" target="_blank">Geyser fund - Newsroom</a>.</p> |
||||
|
||||
{% endblock %} |
||||
@ -0,0 +1,78 @@
@@ -0,0 +1,78 @@
|
||||
{% extends 'base.html.twig' %} |
||||
|
||||
{% block nav %} |
||||
{% endblock %} |
||||
|
||||
{% block body %} |
||||
<h1>Terms of service</h1> |
||||
|
||||
<p>Effective Date: April 1, 2025</p> |
||||
|
||||
<p>Welcome to Decent Newsroom. These Terms of Service ("Terms") govern your access to and use of our platform, |
||||
including the ability to publish, index, search, and subscribe to content. By using our services, you agree to these Terms.</p> |
||||
|
||||
<ol> |
||||
<li> |
||||
<h2>Introduction</h2> |
||||
<p>Decent Newsroom is a platform for discovering, curating, and publishing journalism on Nostr. |
||||
We provide tools for searching, indexing, and managing long-form content.</p> |
||||
<p>Decent Newsroom also publishes an open-access magazine, Newsroom magazine, comprised of a curated collection of english language articles.</p> |
||||
</li> |
||||
|
||||
<li> |
||||
<h2>User Accounts & Responsibilities</h2> |
||||
|
||||
<p>We do not store user credentials, emails, or passwords. Authentication is done via Nostr public keys (npubs).</p> |
||||
|
||||
{# <p>Some data is stored and linked to your npub, including:</p>#} |
||||
{# <ul>#} |
||||
{# <li>Subscription status and payment history (if applicable)</li>#} |
||||
{# <li>Indexing requests</li>#} |
||||
{# </ul>#} |
||||
|
||||
{# <p>Content submitted for indexing may remain publicly discoverable even if a user stops using the platform.</p>#} |
||||
{# #} |
||||
</li> |
||||
|
||||
<li> |
||||
<h2>Content & Ownership</h2> |
||||
<p>The platform operates on the basis of open access content.</p> |
||||
<p>We do not endorse or verify third-party content and are not responsible for its accuracy.</p> |
||||
<p>We reserve the right to include and exclude content from the indexer at our own discretion.</p> |
||||
{# <p>By requesting indexing, you agree that your content may be made publicly discoverable unless otherwise specified.</p>#} |
||||
</li> |
||||
|
||||
<li> |
||||
<h2>Payments & Subscriptions</h2> |
||||
<p>We use Lightning invoices for processing payments.</p> |
||||
<p>Some features, such as indexing requests, high-volume search, and premium content, require a paid subscription.</p> |
||||
<p>Payments are generally non-refundable, except in cases of accidental charges or platform malfunctions.</p> |
||||
</li> |
||||
|
||||
<li> |
||||
<h2>Disclaimer of Warranties</h2> |
||||
<p>The platform is provided "as is" and "as available" without warranties of any kind.</p> |
||||
<p>We do not guarantee uninterrupted service, accuracy, or security of content.</p> |
||||
</li> |
||||
|
||||
<li> |
||||
<h2>Limitation of Liability</h2> |
||||
<p>We are not responsible for any direct, indirect, or incidental damages arising from your use of the platform.</p> |
||||
</li> |
||||
|
||||
<li> |
||||
<h2>Termination & Suspension</h2> |
||||
<p>We reserve the right to suspend or terminate access if users violate these Terms.</p> |
||||
<p>Users can request deletion of their data at any time, though some content may remain indexed based on prior agreements.</p> |
||||
</li> |
||||
|
||||
<li> |
||||
<h2>Changes to These Terms</h2> |
||||
<p>We may update these Terms periodically. Continued use of the platform after modifications constitutes acceptance of the new Terms.</p> |
||||
</li> |
||||
|
||||
|
||||
|
||||
</ol> |
||||
|
||||
{% endblock %} |
||||
Loading…
Reference in new issue