repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/errors/500.blade.php
resources/views/errors/500.blade.php
@extends('layouts.base') @section('content') <div class="container small py-xl"> <main class="card content-wrap auto-height"> <div id="main-content" class="body"> <h3>{{ trans('errors.error_occurred') }}</h3> <h5 class="mb-m">{{ $message ?? 'An unknown error oc...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/errors/503.blade.php
resources/views/errors/503.blade.php
@extends('layouts.plain') @section('content') <div id="content" class="block"> <div class="container small mt-xl"> <div class="card content-wrap auto-height"> <h1 class="list-heading">{{ trans('errors.app_down', ['appName' => setting('app-name')]) }}</h1> <p>{{ t...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/errors/404.blade.php
resources/views/errors/404.blade.php
@extends('layouts.simple') @inject('popular', \BookStack\Entities\Queries\QueryPopular::class) @section('content') <div class="container mt-l"> <div class="card mb-xl px-l pb-l pt-l"> <div class="grid half v-center"> <div> @include('errors.parts.not-found-tex...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/errors/debug.blade.php
resources/views/errors/debug.blade.php
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <title>Error: {{ $error }}</title> <style> html, body { background-color: #F2F2F2; ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/errors/parts/not-found-text.blade.php
resources/views/errors/parts/not-found-text.blade.php
{{--The below text may be dynamic based upon language and scenario.--}} {{--It's safer to add new text sections here rather than altering existing ones.--}} <h1 class="list-heading">{{ $title }}</h1> <h5>{{ $subtitle }}</h5> <p>{{ $details }}</p>
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/layout.blade.php
resources/views/settings/layout.blade.php
@extends('layouts.simple') @section('body') <div class="container medium"> @include('settings.parts.navbar', ['selected' => 'settings']) <div class="grid gap-xxl right-focus"> <div> <h5>{{ trans('settings.categories') }}</h5> <nav class="active-link-li...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/maintenance.blade.php
resources/views/settings/maintenance.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'maintenance']) <div class="card content-wrap auto-height pb-xl"> <h2 class="list-heading">{{ trans('settings.recycle_bin') }}</h2> <div class="grid half gap-xl"> ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/audit.blade.php
resources/views/settings/audit.blade.php
@extends('layouts.simple') @section('body') <div class="container"> @include('settings.parts.navbar', ['selected' => 'audit']) <div class="card content-wrap auto-height"> <h1 class="list-heading">{{ trans('settings.audit') }}</h1> <p class="text-muted">{{ trans('settings.a...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/parts/navbar.blade.php
resources/views/settings/parts/navbar.blade.php
<nav class="active-link-list py-m flex-container-row justify-center wrap"> @if(userCan(\BookStack\Permissions\Permission::SettingsManage)) <a href="{{ url('/settings') }}" @if($selected == 'settings') class="active" @endif>@icon('settings'){{ trans('settings.settings') }}</a> <a href="{{ url('/sett...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/parts/table-user.blade.php
resources/views/settings/parts/table-user.blade.php
{{-- $user - User to display. --}} <a href="{{ $user->getEditUrl() }}" class="flex-container-row inline gap-s items-center"> <div class="flex-none"><img width="40" height="40" class="avatar block" src="{{ $user->getAvatar(40)}}" alt="{{ $user->name }}"></div> <div class="flex">{{ $user->name }}</div> </a>
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/parts/footer-links.blade.php
resources/views/settings/parts/footer-links.blade.php
{{-- $value - Setting value $name - Setting input name --}} <div components="add-remove-rows" option:add-remove-rows:row-selector=".card" option:add-remove-rows:remove-selector="button.text-neg"> <div component="sortable-list" option:sortable-list:handle-selector=".handle"> @foreach(arra...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/parts/setting-color-picker.blade.php
resources/views/settings/parts/setting-color-picker.blade.php
{{-- @type - Name of color setting --}} @php $keyAppends = ($mode === 'light' ? '' : '-' . $mode); @endphp <div component="setting-color-picker" option:setting-color-picker:default="{{ config('setting-defaults.'. $type .'-color' . $keyAppends) }}" option:setting-color-picker:current="{{ setting($type ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/parts/setting-color-scheme.blade.php
resources/views/settings/parts/setting-color-scheme.blade.php
{{-- @mode - 'light' or 'dark'. --}} <p class="small">{{ trans('settings.ui_colors_desc') }}</p> <div class="grid half pt-m"> <div> @include('settings.parts.setting-color-picker', ['type' => 'app', 'mode' => $mode]) </div> <div> @include('settings.parts.setting-color-picker', ['type' => ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/recycle-bin/restore.blade.php
resources/views/settings/recycle-bin/restore.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'maintenance']) <div class="card content-wrap auto-height"> <h2 class="list-heading">{{ trans('settings.recycle_bin_restore') }}</h2> <p class="text-m...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/recycle-bin/index.blade.php
resources/views/settings/recycle-bin/index.blade.php
@extends('layouts.simple') @section('body') <div class="container"> @include('settings.parts.navbar', ['selected' => 'maintenance']) <div class="card content-wrap auto-height"> <h2 class="list-heading">{{ trans('settings.recycle_bin') }}</h2> <div class="flex-container-ro...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/recycle-bin/destroy.blade.php
resources/views/settings/recycle-bin/destroy.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'maintenance']) <div class="card content-wrap auto-height"> <h2 class="list-heading">{{ trans('settings.recycle_bin_permanently_delete') }}</h2> <p cl...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/recycle-bin/parts/entity-display-item.blade.php
resources/views/settings/recycle-bin/parts/entity-display-item.blade.php
<?php $type = $entity->getType(); ?> <div class="{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}} {{$classes ?? ''}} entity-list-item no-hover"> <span role="presentation" class="icon text-{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}}">@icon($type)</span> <div class="content"> ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/recycle-bin/parts/recycle-bin-list-item.blade.php
resources/views/settings/recycle-bin/parts/recycle-bin-list-item.blade.php
<div class="item-list-row flex-container-row items-center px-s wrap"> <div class="flex-2 px-m py-xs min-width-xl"> <div class="flex-container-row items-center py-xs"> <span role="presentation" class="flex-none icon text-{{$deletion->deletable->getType()}}">@icon($deletion->deletable->getType())<...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/recycle-bin/parts/deletable-entity-list.blade.php
resources/views/settings/recycle-bin/parts/deletable-entity-list.blade.php
@include('settings.recycle-bin.parts.entity-display-item', ['entity' => $entity]) @if($entity->isA('book')) @foreach($entity->chapters()->withTrashed()->get() as $chapter) @include('settings.recycle-bin.parts.entity-display-item', ['entity' => $chapter]) @endforeach @endif @if($entity->isA('book') || $e...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/sort-rules/edit.blade.php
resources/views/settings/sort-rules/edit.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'settings']) <div class="card content-wrap auto-height"> <h1 class="list-heading">{{ trans('settings.sort_rule_edit') }}</h1> <form action="{{ $rule...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/sort-rules/create.blade.php
resources/views/settings/sort-rules/create.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'settings']) <div class="card content-wrap auto-height"> <h1 class="list-heading">{{ trans('settings.sort_rule_create') }}</h1> <form action="{{ url...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/sort-rules/parts/operation.blade.php
resources/views/settings/sort-rules/parts/operation.blade.php
<li data-id="{{ $operation->value }}" class="scroll-box-item items-center"> <div class="handle px-s">@icon('grip')</div> <div class="text-small">{{ $operation->getLabel() }}</div> <div class="buttons flex-container-row items-center ml-auto px-xxs py-xxs"> <button type="button" data-action="move_...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/sort-rules/parts/form.blade.php
resources/views/settings/sort-rules/parts/form.blade.php
<div class="setting-list"> <div class="grid half"> <div> <label class="setting-list-label">{{ trans('settings.sort_rule_details') }}</label> <p class="text-muted text-small">{{ trans('settings.sort_rule_details_desc') }}</p> </div> <div> <div class="form-g...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/sort-rules/parts/sort-rule-list-item.blade.php
resources/views/settings/sort-rules/parts/sort-rule-list-item.blade.php
<div class="item-list-row flex-container-row py-xs px-m gap-m items-center"> <div class="py-xs flex"> <a href="{{ $rule->getUrl() }}">{{ $rule->name }}</a> </div> <div class="px-m text-small text-muted ml-auto"> {{ implode(', ', array_map(fn ($op) => $op->getLabel(), $rule->getOperations()))...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/edit.blade.php
resources/views/settings/roles/edit.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'roles']) <div class="card content-wrap"> <h1 class="list-heading">{{ trans('settings.role_edit') }}</h1> <form action="{{ url("/settings/roles/{$rol...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/delete.blade.php
resources/views/settings/roles/delete.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'roles']) <div class="card content-wrap auto-height"> <h1 class="list-heading"> {{ trans('settings.role_delete') }}</h1> <p>{{ trans('settings.role_d...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/index.blade.php
resources/views/settings/roles/index.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'roles']) <div class="card content-wrap auto-height"> <div class="grid half v-center"> <h1 class="list-heading">{{ trans('settings.role_user_rol...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/create.blade.php
resources/views/settings/roles/create.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'roles']) <div class="card content-wrap"> <h1 class="list-heading">{{ trans('settings.role_create') }}</h1> <form action="{{ url("/settings/roles/ne...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/parts/checkbox.blade.php
resources/views/settings/roles/parts/checkbox.blade.php
@include('form.custom-checkbox', [ 'name' => 'permissions[' . $permission . ']', 'value' => 'true', 'checked' => old('permissions'.$permission, false)|| (!old('display_name', false) && (isset($role) && $role->hasPermission($permission))), 'label' => $label ])
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/parts/roles-list-item.blade.php
resources/views/settings/roles/parts/roles-list-item.blade.php
<div class="item-list-row flex-container-row py-xs items-center"> <div class="py-xs px-m flex-2"> <a href="{{ url("/settings/roles/{$role->id}") }}">{{ $role->display_name }}</a><br> @if($role->mfa_enforced) <small title="{{ trans('settings.role_mfa_enforced') }}">@icon('lock') </small> ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/parts/related-asset-permissions-row.blade.php
resources/views/settings/roles/parts/related-asset-permissions-row.blade.php
<div class="item-list-row flex-container-row items-center wrap"> <div class="flex py-s px-m min-width-s"> <strong>{{ $title }}</strong> <br> <a href="#" refs="permissions-table@toggle-row" class="text-small text-link">{{ trans('common.toggle_all') }}</a> </div> <div class="flex py-s px-m min...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/parts/form.blade.php
resources/views/settings/roles/parts/form.blade.php
<div class="setting-list"> <div class="grid half"> <div> <label class="setting-list-label">{{ trans('settings.role_details') }}</label> </div> <div> <div class="form-group"> <label for="display_name">{{ trans('settings.role_name') }}</label> ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/roles/parts/asset-permissions-row.blade.php
resources/views/settings/roles/parts/asset-permissions-row.blade.php
<div class="item-list-row flex-container-row items-center wrap"> <div class="flex py-s px-m min-width-s"> <strong>{{ $title }}</strong> <br> <a href="#" refs="permissions-table@toggle-row" class="text-small text-link">{{ trans('common.toggle_all') }}</a> </div> <div class="flex py-s px-m min...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/webhooks/edit.blade.php
resources/views/settings/webhooks/edit.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'webhooks']) <div class="card content-wrap auto-height"> <h1 class="list-heading">{{ trans('settings.webhooks_edit') }}</h1> <div class="setting-lis...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/webhooks/delete.blade.php
resources/views/settings/webhooks/delete.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'webhooks']) <div class="card content-wrap auto-height"> <h1 class="list-heading"> {{ trans('settings.webhooks_delete') }}</h1> <p>{{ trans('settings...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/webhooks/index.blade.php
resources/views/settings/webhooks/index.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'webhooks']) <div class="card content-wrap auto-height"> <div class="flex-container-row items-center justify-space-between wrap"> <h1 class="lis...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/webhooks/create.blade.php
resources/views/settings/webhooks/create.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> @include('settings.parts.navbar', ['selected' => 'webhooks']) <div class="card content-wrap auto-height"> <h1 class="list-heading">{{ trans('settings.webhooks_create') }}</h1> <form action="{{ url(...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/webhooks/parts/webhooks-list-item.blade.php
resources/views/settings/webhooks/parts/webhooks-list-item.blade.php
<div class="item-list-row py-s"> <div class="flex-container-row"> <div class="flex-2 px-m flex-container-row items-center gap-xs"> @include('common.status-indicator', ['status' => $webhook->active]) <div>&nbsp;<a href="{{ $webhook->getUrl() }}">{{ $webhook->name }}</a></div> ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/webhooks/parts/format-example.blade.php
resources/views/settings/webhooks/parts/format-example.blade.php
<div component="code-highlighter" class="card content-wrap auto-height"> <h2 class="list-heading">{{ trans('settings.webhooks_format_example') }}</h2> <p>{{ trans('settings.webhooks_format_example_desc') }}</p> <pre><code class="language-json">{ "event": "page_update", "text": "Benny updated page \"...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/webhooks/parts/form.blade.php
resources/views/settings/webhooks/parts/form.blade.php
<div class="setting-list"> <div class="grid half"> <div> <label class="setting-list-label">{{ trans('settings.webhooks_details') }}</label> <p class="small">{{ trans('settings.webhooks_details_desc') }}</p> <div> @include('form.toggle-switch', [ ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/categories/registration.blade.php
resources/views/settings/categories/registration.blade.php
@extends('settings.layout') @section('card') <h1 id="registration" class="list-heading">{{ trans('settings.reg_settings') }}</h1> <form action="{{ url("/settings/registration") }}" method="POST"> {!! csrf_field() !!} <input type="hidden" name="section" value="registration"> <div class=...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/categories/customization.blade.php
resources/views/settings/categories/customization.blade.php
@extends('settings.layout') @section('card') <h1 id="customization" class="list-heading">{{ trans('settings.app_customization') }}</h1> <form action="{{ url("/settings/customization") }}" method="POST" enctype="multipart/form-data"> {{ csrf_field() }} <input type="hidden" name="section" value="...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/categories/sorting.blade.php
resources/views/settings/categories/sorting.blade.php
@extends('settings.layout') @php $sortRules = \BookStack\Sorting\SortRule::allByName(); @endphp @section('card') <h1 id="sorting" class="list-heading">{{ trans('settings.sorting') }}</h1> <form action="{{ url("/settings/sorting") }}" method="POST"> {{ csrf_field() }} <input type="hidden" n...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/settings/categories/features.blade.php
resources/views/settings/categories/features.blade.php
@extends('settings.layout') @section('card') <h1 id="features" class="list-heading">{{ trans('settings.app_features_security') }}</h1> <form action="{{ url("/settings/features") }}" method="POST"> {!! csrf_field() !!} <input type="hidden" name="section" value="features"> <div class="se...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/copy-considerations.blade.php
resources/views/entities/copy-considerations.blade.php
<p class="text-warn mb-none mt-l"> @icon('warning') <strong>{{ trans('entities.copy_consider') }}</strong> </p> <div class="grid half no-gap no-row-gap text-warn mb-m"> <ul class="pr-s mb-none"> <li>{{ trans('entities.copy_consider_permissions') }}</li> <li>{{ trans('entities.copy_consider_owne...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/book-tree.blade.php
resources/views/entities/book-tree.blade.php
<nav id="book-tree" class="book-tree mb-xl" aria-label="{{ trans('entities.books_navigation') }}"> <h5>{{ trans('entities.books_navigation') }}</h5> <ul class="sidebar-page-list mt-xs menu entity-list"> @if (userCan(\BookStack\Permissions\Permission::BookView, $book)) <li class="...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/watch-action.blade.php
resources/views/entities/watch-action.blade.php
<form action="{{ url('/watching/update') }}" method="POST"> {{ csrf_field() }} {{ method_field('PUT') }} <input type="hidden" name="type" value="{{ $entity->getMorphClass() }}"> <input type="hidden" name="id" value="{{ $entity->id }}"> <button type="submit" name="level" value...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/breadcrumbs.blade.php
resources/views/entities/breadcrumbs.blade.php
<nav class="breadcrumbs text-center" aria-label="{{ trans('common.breadcrumb') }}"> <?php $breadcrumbCount = 0; ?> {{-- Show top level books item --}} @if (count($crumbs) > 0 && ($crumbs[0] ?? null) instanceof \BookStack\Entities\Models\Book) <a href="{{ url('/books') }}" class="text-book icon-l...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/tag-list.blade.php
resources/views/entities/tag-list.blade.php
@foreach($entity->tags as $tag) @include('entities.tag', ['tag' => $tag]) @endforeach
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/tag-manager.blade.php
resources/views/entities/tag-manager.blade.php
<div components="tag-manager add-remove-rows" option:add-remove-rows:row-selector=".card" option:add-remove-rows:remove-selector="button.text-neg" option:tag-manager:row-selector=".card:not(.hidden)" refs="tag-manager@add-remove" class="tags"> <p class="text-muted small"> {!! nl2br...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/selector.blade.php
resources/views/entities/selector.blade.php
{{-- $name - string $autofocus - boolean, optional $entityTypes - string, optional $entityPermission - string, optional $selectorEndpoint - string, optional $selectorSize - string, optional (compact) --}} <div class="form-group entity-selector-container"> <div component="entity-selector" refs="entity-selec...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/search-form.blade.php
resources/views/entities/search-form.blade.php
{{-- @label - Placeholder/aria-label text --}} <div class="mb-xl"> <form refs="entity-search@searchForm" class="search-box flexible" role="search"> <input refs="entity-search@searchInput" type="text" aria-label="{{ $label }}" name="term" placeholder="{{ $label }}"> <button tabindex="-...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/template-selector.blade.php
resources/views/entities/template-selector.blade.php
<div class="flex-container-row gap-l justify-space-between pb-xs wrap"> <p class="text-muted small my-none min-width-xs flex"> {{ trans('entities.default_template_explain') }} </p> <div class="min-width-m"> @include('form.page-picker', [ 'name' => 'default_template_id', ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/references.blade.php
resources/views/entities/references.blade.php
<main class="card content-wrap"> <h1 class="list-heading">{{ trans('entities.references') }}</h1> <p>{{ trans('entities.references_to_desc') }}</p> @if(count($references) > 0) <div class="book-contents"> @include('entities.list', ['entities' => $references->pluck('from'), 'showPath' => ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/view-toggle.blade.php
resources/views/entities/view-toggle.blade.php
<div> <form action="{{ url("/preferences/change-view/" . $type) }}" method="POST" class="inline"> {{ csrf_field() }} {{ method_field('patch') }} <input type="hidden" name="_return" value="{{ url()->current() }}"> @if ($view === 'list') <button type="submit" name="view" v...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/meta.blade.php
resources/views/entities/meta.blade.php
<div class="entity-meta"> @if($entity->isA('revision')) <div class="entity-meta-item"> @icon('history') <div> {{ trans('entities.pages_revision') }} {{ trans('entities.pages_revisions_number') }}{{ $entity->revision_number == 0 ? '' : $entity->revision...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/watch-controls.blade.php
resources/views/entities/watch-controls.blade.php
<div component="dropdown" class="dropdown-container block my-xxs"> <a refs="dropdown@toggle" aria-haspopup="menu" aria-expanded="false" role="button" href="#" class="entity-meta-item my-none"> @icon(($ignoring ? 'watch-ignore' : 'watch')) <span>{{ $label }}</s...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/favourite-action.blade.php
resources/views/entities/favourite-action.blade.php
@php $isFavourite = $entity->isFavourite(); @endphp <form action="{{ url('/favourites/' . ($isFavourite ? 'remove' : 'add')) }}" method="POST"> {{ csrf_field() }} <input type="hidden" name="type" value="{{ $entity->getMorphClass() }}"> <input type="hidden" name="id" value="{{ $entity->id }}"> <button t...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/body-tag-classes.blade.php
resources/views/entities/body-tag-classes.blade.php
@push('body-class', e((new \BookStack\Activity\Tools\TagClassGenerator($entity))->generateAsString() . ' '))
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/tag-manager-list.blade.php
resources/views/entities/tag-manager-list.blade.php
@foreach(array_merge($tags, [null, null]) as $index => $tag) <div class="card drag-card {{ $loop->last ? 'hidden' : '' }}" @if($loop->last) refs="add-remove-rows@model" @endif> <div class="handle">@icon('grip')</div> @foreach(['name', 'value'] as $type) <div component="auto-suggest" ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/search-results.blade.php
resources/views/entities/search-results.blade.php
<div refs="entity-search@searchView" class="search-results hidden"> <div class="grid half v-center"> <h3 class="text-muted px-none"> {{ trans('entities.search_results') }} </h3> <div class="text-right"> <a refs="entity-search@clearButton" class="button outline">{{ tra...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/list-item-basic.blade.php
resources/views/entities/list-item-basic.blade.php
<?php $type = $entity->getType(); ?> <a href="{{ $entity->getUrl() }}" class="{{$type}} {{$type === 'page' && $entity->draft ? 'draft' : ''}} {{$classes ?? ''}} entity-list-item" data-entity-type="{{$type}}" data-entity-id="{{$entity->id}}"> <span role="presentation" class="icon text-{{$type}}">@icon($type...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/selector-popup.blade.php
resources/views/entities/selector-popup.blade.php
<div id="entity-selector-wrap"> <div components="popup entity-selector-popup" class="popup-background"> <div class="popup-body small" tabindex="-1"> <div class="popup-header primary-background"> <div class="popup-title">{{ trans('entities.entity_select') }}</div> ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/sibling-navigation.blade.php
resources/views/entities/sibling-navigation.blade.php
<div id="sibling-navigation" class="grid half collapse-xs items-center mb-m px-m no-row-gap fade-in-when-active print-hidden"> <div> @if($previous) <a href="{{ $previous->getUrl() }}" data-shortcut="previous" class="outline-hover no-link-style block rounded"> <div class="px-m p...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/grid-item.blade.php
resources/views/entities/grid-item.blade.php
<a href="{{ $entity->getUrl() }}" class="grid-card" data-entity-type="{{ $entity->getType() }}" data-entity-id="{{ $entity->id }}"> <div class="bg-{{ $entity->getType() }} featured-image-container-wrap"> <div class="featured-image-container" @if($entity->coverInfo()->exists()) style="background-image: ur...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/tag.blade.php
resources/views/entities/tag.blade.php
<div class="tag-item primary-background-light" data-name="{{ $tag->name }}" data-value="{{ $tag->value }}"> @if($linked ?? true) <div class="tag-name {{ $tag->highlight_name ? 'highlight' : '' }}"><a href="{{ $tag->nameUrl() }}">@icon('tag'){{ $tag->name }}</a></div> @if($tag->value) <div class="tag...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/list-basic.blade.php
resources/views/entities/list-basic.blade.php
<div class="entity-list {{ $style ?? '' }}"> @if(count($entities) > 0) @foreach($entities as $index => $entity) @include('entities.list-item-basic', ['entity' => $entity]) @endforeach @else <p class="text-muted empty-text"> {{ $emptyText ?? trans('common.no_items'...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/export-menu.blade.php
resources/views/entities/export-menu.blade.php
<div component="dropdown" class="dropdown-container" id="export-menu"> <button refs="dropdown@toggle" class="icon-list-item text-link" aria-haspopup="true" aria-expanded="false" aria-label="{{ trans('entities.export') }}" data-shortcut="export"> <span>...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/breadcrumb-listing.blade.php
resources/views/entities/breadcrumb-listing.blade.php
<div components="dropdown dropdown-search" option:dropdown-search:url="/search/entity/siblings?entity_type={{$entity->getType()}}&entity_id={{ $entity->id }}" option:dropdown-search:local-search-selector=".entity-list-item" class="dropdown-search"> <button class="dropdown-search-toggle-breadcrumb" ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/list.blade.php
resources/views/entities/list.blade.php
@if(count($entities) > 0) <div class="entity-list {{ $style ?? '' }}"> @foreach($entities as $index => $entity) @include('entities.list-item', ['entity' => $entity, 'showPath' => $showPath ?? false, 'showTags' => $showTags ?? false]) @endforeach </div> @else <p class="text-muted ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/list-item.blade.php
resources/views/entities/list-item.blade.php
@component('entities.list-item-basic', ['entity' => $entity, 'classes' => (($locked ?? false) ? 'disabled ' : '') . ($classes ?? '') ]) <div class="entity-item-snippet"> @if($locked ?? false) <div class="text-warn my-xxs bold"> @icon('lock'){{ trans('entities.entity_select_lack_permission') }}...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/entities/icon-link.blade.php
resources/views/entities/icon-link.blade.php
<a href="{{ $entity->getUrl() }}" class="flex-container-row items-center"> <span role="presentation" class="icon flex-none text-{{$entity->getType()}}">@icon($entity->getType())</span> <div class="flex text-{{ $entity->getType() }}"> {{ $entity->name }} </div> </a>
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/move.blade.php
resources/views/pages/move.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> <div class="my-s"> @include('entities.breadcrumbs', ['crumbs' => [ $page->book, $page->chapter, $page, $page->getUrl('/move') => [ 'tex...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/revisions.blade.php
resources/views/pages/revisions.blade.php
@extends('layouts.simple') @section('body') <div class="container"> <div class="my-s"> @include('entities.breadcrumbs', ['crumbs' => [ $page->book, $page->chapter, $page, $page->getUrl('/revisions') => [ 'text'...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/edit.blade.php
resources/views/pages/edit.blade.php
@extends('layouts.base') @push('body-class', 'flexbox ') @section('content') <div id="main-content" class="flex-fill flex height-fill"> <form action="{{ $page->getUrl() }}" autocomplete="off" data-page-id="{{ $page->id }}" method="POST" class="flex flex-fill"> {{ csrf_field() }} ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/permissions.blade.php
resources/views/pages/permissions.blade.php
@extends('layouts.simple') @section('body') <div class="container"> <div class="my-s"> @include('entities.breadcrumbs', ['crumbs' => [ $page->book, $page->chapter, $page, $page->getUrl('/permissions') => [ 'te...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/guest-create.blade.php
resources/views/pages/guest-create.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> <div class="my-s"> @include('entities.breadcrumbs', ['crumbs' => [ ($parent->isA('chapter') ? $parent->book : null), $parent, $parent->getUrl('/create-page') => [ ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/delete.blade.php
resources/views/pages/delete.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> <div class="my-s"> @include('entities.breadcrumbs', ['crumbs' => [ $page->book, $page->chapter, $page, $page->getUrl('/delete') => [ 't...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/references.blade.php
resources/views/pages/references.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> <div class="my-s"> @include('entities.breadcrumbs', ['crumbs' => [ $page->book, $page->chapter, $page, $page->getUrl('/references') => [ ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/revision.blade.php
resources/views/pages/revision.blade.php
@extends('layouts.tri') @section('left') <div id="revision-details" class="entity-details mb-xl"> <h5>{{ trans('common.details') }}</h5> <div class="body text-small text-muted"> @include('entities.meta', ['entity' => $revision, 'watchOptions' => null]) </div> </div> @stop @...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/copy.blade.php
resources/views/pages/copy.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> <div class="my-s"> @include('entities.breadcrumbs', ['crumbs' => [ $page->book, $page->chapter, $page, $page->getUrl('/copy') => [ 'tex...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/show.blade.php
resources/views/pages/show.blade.php
@extends('layouts.tri') @push('social-meta') <meta property="og:description" content="{{ Str::limit($page->text, 100, '...') }}"> @endpush @include('entities.body-tag-classes', ['entity' => $page]) @section('body') <div class="mb-m print-hidden"> @include('entities.breadcrumbs', ['crumbs' => [ ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/code-editor.blade.php
resources/views/pages/parts/code-editor.blade.php
<div> <div components="popup code-editor" option:code-editor:favourites="{{ setting()->getForCurrentUser('code-language-favourites', '') }}" class="popup-background code-editor"> <div refs="code-editor@container" class="popup-body" tabindex="-1"> <div class="popup-header flex-...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/pointer.blade.php
resources/views/pages/parts/pointer.blade.php
<div component="pointer" option:pointer:page-id="{{ $page->id }}"> <div id="pointer" refs="pointer@pointer" tabindex="-1" aria-label="{{ trans('entities.pages_pointer_label') }}" class="pointer-container"> <div class="pointer flex-container-row items-center justify...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/editor-toolbar.blade.php
resources/views/pages/parts/editor-toolbar.blade.php
<div class="toolbar page-edit-toolbar py-xs"> <div> <div class="inline block"> <a href="{{ $isDraft ? $page->getParent()->getUrl() : $page->getUrl() }}" class="icon-list-item text-link"><span>@icon('back')</span><span class="hide-under-l">{{ trans('common.back') }}</span></a> ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/template-manager-list.blade.php
resources/views/pages/parts/template-manager-list.blade.php
{{ $templates->links() }} @foreach($templates as $template) <div class="card template-item border-card p-m mb-m" tabindex="0" aria-label="{{ trans('entities.templates_replace_content') }} - {{ $template->name }}" draggable="true" template-id="{{ $template->id }}"> <div class="template-ite...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/markdown-editor.blade.php
resources/views/pages/parts/markdown-editor.blade.php
<div id="markdown-editor" component="markdown-editor" option:markdown-editor:page-id="{{ $model->id ?? 0 }}" option:markdown-editor:text-direction="{{ $locale->htmlDirection() }}" option:markdown-editor:image-upload-error-text="{{ trans('errors.image_upload_error') }}" option:markdown-editor:server-...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/wysiwyg-editor-tinymce.blade.php
resources/views/pages/parts/wysiwyg-editor-tinymce.blade.php
@push('head') <script src="{{ versioned_asset('libs/tinymce/tinymce.min.js') }}" nonce="{{ $cspNonce }}"></script> @endpush <div component="wysiwyg-editor-tinymce" option:wysiwyg-editor-tinymce:language="{{ $locale->htmlLang() }}" option:wysiwyg-editor-tinymce:page-id="{{ $model->id ?? 0 }}" option:...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/editor-toolbox.blade.php
resources/views/pages/parts/editor-toolbox.blade.php
<div component="editor-toolbox" class="floating-toolbox"> <div class="tabs flex-container-column justify-flex-start"> <div class="tabs-inner flex-container-column justify-center"> <button type="button" refs="editor-toolbox@toggle" title="{{ trans('entities.toggle_sidebar') }}" aria-expanded="fa...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/form.blade.php
resources/views/pages/parts/form.blade.php
<div component="page-editor" class="page-editor page-editor-{{ $editor }} flex-fill flex" option:page-editor:drafts-enabled="{{ $draftsEnabled ? 'true' : 'false' }}" @if(config('services.drawio')) drawio-url="{{ is_string(config('services.drawio')) ? config('services.drawio') : 'https://embed.diagrams...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/toolbox-comments.blade.php
resources/views/pages/parts/toolbox-comments.blade.php
{{-- $comments - CommentTree --}} <div refs="editor-toolbox@tab-content" data-tab-content="comments" class="toolbox-tab-content"> <h4>{{ trans('entities.comments') }}</h4> <div class="comment-container-compact px-l"> <p class="text-muted small mb-m"> {{ trans('entities.comment_editor_explai...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/image-manager-form.blade.php
resources/views/pages/parts/image-manager-form.blade.php
<div component="dropzone" option:dropzone:url="{{ url("/images/{$image->id}/file") }}" option:dropzone:method="PUT" option:dropzone:success-message="{{ trans('components.image_update_success') }}" option:dropzone:upload-limit="{{ config('app.upload_limit') }}" option:dropzone:upload-limit-messa...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/template-manager.blade.php
resources/views/pages/parts/template-manager.blade.php
<div component="template-manager"> @if(userCan(\BookStack\Permissions\Permission::TemplatesManage)) <p class="text-muted small mb-none"> {{ trans('entities.templates_explain_set_as_template') }} </p> @include('form.toggle-switch', [ 'name' => 'template', ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/image-manager-list.blade.php
resources/views/pages/parts/image-manager-list.blade.php
@if($warning ?? '') <div class="image-manager-list-warning image-manager-warning px-m py-xs flex-container-row gap-xs items-center"> <div>@icon('warning')</div> <div class="flex">{{ $warning }}</div> </div> @endif @foreach($images as $index => $image) <div> <button component="event-emit-sele...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/list-item.blade.php
resources/views/pages/parts/list-item.blade.php
@component('entities.list-item-basic', ['entity' => $page]) <div class="entity-item-snippet"> <p class="text-muted break-text">{{ $page->getExcerpt() }}</p> </div> @endcomponent
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/revisions-index-row.blade.php
resources/views/pages/parts/revisions-index-row.blade.php
<div class="item-list-row flex-container-row items-center wrap"> <div class="flex fit-content min-width-xxxxs px-m py-xs"> <span class="hide-over-l">{{ trans('entities.pages_revisions_number') }}</span> {{ $revision->revision_number == 0 ? '' : $revision->revision_number }} </div> <div class...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/wysiwyg-editor.blade.php
resources/views/pages/parts/wysiwyg-editor.blade.php
<div component="wysiwyg-editor" option:wysiwyg-editor:language="{{ $locale->htmlLang() }}" option:wysiwyg-editor:page-id="{{ $model->id ?? 0 }}" option:wysiwyg-editor:text-direction="{{ $locale->htmlDirection() }}" option:wysiwyg-editor:image-upload-error-text="{{ trans('errors.image_upload_error') ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/image-manager.blade.php
resources/views/pages/parts/image-manager.blade.php
<div components="image-manager dropzone" option:dropzone:url="{{ url('/images/gallery?' . http_build_query(['uploaded_to' => $uploaded_to ?? 0])) }}" option:dropzone:success-message="{{ trans('components.image_upload_success') }}" option:dropzone:error-message="{{ trans('errors.image_upload_error') }}" ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/pages/parts/page-display.blade.php
resources/views/pages/parts/page-display.blade.php
<div dir="auto"> <h1 class="break-text" id="bkmrk-page-title">{{$page->name}}</h1> <div style="clear:left;"></div> @if (isset($diff) && $diff) {!! $diff !!} @else {!! isset($page->renderedHTML) ? $page->renderedHTML : $page->html !!} @endif </div>
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/resources/views/tags/index.blade.php
resources/views/tags/index.blade.php
@extends('layouts.simple') @section('body') <div class="container small"> <main class="card content-wrap mt-xxl"> <h1 class="list-heading">{{ trans('entities.tags') }}</h1> <p class="text-muted">{{ trans('entities.tags_index_desc') }}</p> <div class="flex-container-r...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false