2017-03-13 16:18:15 +00:00
|
|
|
@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 19:16:49 +00:00
|
|
|
<dt>Syndication Targets</dt><dd>@if(is_array($data['syndication']))<ul>@foreach ($data['syndication'] as $syn)<li>{{ $syn['name'] }} ({{ $syn['target'] }})</li>@endforeach</ul>@else{{ $data['syndication'] }}@endif</dd>
|
2017-03-15 12:24:06 +00:00
|
|
|
<dt>Media Endpoint</dt><dd>{{ $data['media-endpoint'] }}</dd>
|
2017-03-13 16:18:15 +00:00
|
|
|
</dl>
|
2017-03-15 12:24:06 +00:00
|
|
|
<p><a href="{{ route('micropub-query-action') }}">Re-query</a> the endpoint.</p>
|
2017-03-28 14:07:35 +01:00
|
|
|
<p>Return to <a href="{{ route('micropub-client') }}">client</a>.
|
2017-03-13 16:18:15 +00:00
|
|
|
@stop
|