@extends('master') @section('title') New Note « @stop @section('content') @if (session('error'))

{{ session('error') }}

@endif

This is my UI for posting new notes, hopefully you’ll soon be able to use this if your site supports the micropub API.

@if($url === null)
IndieAuth
@else

You are authenticated as {{ $url }}, log out.

Check your configuration.

@endif @include('templates.new-note-form', [ 'micropub' => true, 'action' => route('micropub-client-post') ]) @stop @section('scripts') @stop