jonnybarnes.uk/resources/views/micropub/config.blade.php

17 lines
546 B
PHP
Raw Normal View History

@extends('master')
@section('title')
Micropub Config «
@stop
@section('content')
<p>The values for your micropub endpoint.</p>
<dl>
<dt>Me (your url)</dt><dd>{{ $data['me'] }}</dd>
<dt>Token</dt><dd>{{ $data['token'] }}</dd>
2017-03-15 12:24:06 +00:00
<dt>Syndication Targets</dt><dd><ul>@foreach ($data['syndication'] as $syn)<li>{{ $syn['name'] }} ({{ $syn['target'] }})</li>@endforeach</ul></dd>
<dt>Media Endpoint</dt><dd>{{ $data['media-endpoint'] }}</dd>
</dl>
2017-03-15 12:24:06 +00:00
<p><a href="{{ route('micropub-query-action') }}">Re-query</a> the endpoint.</p>
@stop