]> BookStack Code Mirror - bookstack/blob - resources/views/settings/webhooks/index.blade.php
ca93cfeb0f4c6a9e4fda0f2ed1103e8f6399f8c5
[bookstack] / resources / views / settings / webhooks / index.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="py-m">
8             @include('settings.parts.navbar', ['selected' => 'webhooks'])
9         </div>
10
11         <div class="card content-wrap auto-height">
12
13             <div class="grid half v-center">
14                 <h1 class="list-heading">{{ trans('settings.webhooks') }}</h1>
15
16                 <div class="text-right">
17                     <a href="{{ url("/settings/webhooks/new") }}" class="button outline">{{ trans('settings.webhooks_create') }}</a>
18                 </div>
19             </div>
20
21
22         </div>
23     </div>
24
25 @stop