mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
26 lines
627 B
PHP
26 lines
627 B
PHP
|
@extends('layouts.simple')
|
||
|
|
||
|
@section('body')
|
||
|
|
||
|
<div class="container small">
|
||
|
|
||
|
<div class="py-m">
|
||
|
@include('settings.parts.navbar', ['selected' => 'webhooks'])
|
||
|
</div>
|
||
|
|
||
|
<div class="card content-wrap auto-height">
|
||
|
|
||
|
<div class="grid half v-center">
|
||
|
<h1 class="list-heading">{{ trans('settings.webhooks') }}</h1>
|
||
|
|
||
|
<div class="text-right">
|
||
|
<a href="{{ url("/settings/webhooks/new") }}" class="button outline">{{ trans('settings.webhooks_create') }}</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@stop
|