Browse Source

WebSub

master
Aaron Parecki 7 years ago
parent
commit
6fc29e22bc
No known key found for this signature in database GPG Key ID: 276C2817346D6056
3 changed files with 5 additions and 5 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      controllers/controllers.php
  3. +3
    -3
      views/index.php

+ 1
- 1
README.md View File

@ -1,7 +1,7 @@
Switchboard
===========
Switchboard is a PubSubHubbub 4.0 Hub
Switchboard is a WebSub Hub
Credits

+ 1
- 1
controllers/controllers.php View File

@ -3,7 +3,7 @@
$app->get('/', function() use($app) {
$res = $app->response();
$html = render('index', array(
'title' => 'Switchboard - a PubSub Hub',
'title' => 'Switchboard - a WebSub Hub',
'meta' => ''
));
$res->body($html);

+ 3
- 3
views/index.php View File

@ -3,13 +3,13 @@
<div class="jumbotron h-x-app">
<h1><img src="/images/switchboard-logo.png" height="72" style="margin-bottom: 13px;" class="u-logo p-name" alt="Switchboard"> Switchboard</h1>
<p class="tagline p-summary">Switchboard is a PubSub hub.</p>
<p class="tagline p-summary">Switchboard is a WebSub hub.</p>
<p><a href="/docs">Switchboard Documentation</a></p>
<p><a href="https://www.w3.org/TR/pubsub/">PubSub Spec</a></p>
<p><a href="https://www.w3.org/TR/websub/">WebSub Spec</a></p>
<p>Read more about <a href="https://indiewebcamp.com/how-to-push">how to publish and consume using PubSub</a>.</p>
<p>Read more about <a href="https://indieweb.org/how-to-push">how to publish and consume using WebSub</a>.</p>
<a href="<?= Config::$base_url ?>/" class="u-url"></a>
</div>

Loading…
Cancel
Save