mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 01:40:43 +08:00
21 lines
591 B
PHP
21 lines
591 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
<div class="page-content">
|
|
@include('pages/page-display')
|
|
</div>
|
|
|
|
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.7/styles/solarized_light.min.css">
|
|
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.7/highlight.min.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
var aCodes = document.getElementsByTagName('pre');
|
|
for (var i=0; i < aCodes.length; i++) {
|
|
hljs.highlightBlock(aCodes[i]);
|
|
}
|
|
};
|
|
</script>
|
|
|
|
@stop
|