mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<meta name="format-detection" content="telephone=no">
|
|
|
|
<meta name="author" content="Bernd Bestel (bernd@berrnd.de)">
|
|
<link rel="icon" href="{{ $U('/img/grocy_icon.svg?v=', true) }}{{ $version }}">
|
|
|
|
<title>{{ $L('REST API & data model documentation') }} | grocy</title>
|
|
|
|
<link href="{{ $U('/node_modules/swagger-ui-dist/swagger-ui.css?v=', true) }}{{ $version }}" rel="stylesheet">
|
|
|
|
<script>
|
|
var Grocy = { };
|
|
Grocy.OpenApi = { };
|
|
Grocy.OpenApi.SpecUrl = '{{ $U('/api/get-openapi-specification') }}';
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="swagger-ui"></div>
|
|
|
|
<script src="{{ $U('/node_modules/swagger-ui-dist/swagger-ui.js?v=', true) }}{{ $version }}"></script>
|
|
<script src="{{ $U('/node_modules/swagger-ui-dist/swagger-ui-bundle.js?v=', true) }}{{ $version }}"></script>
|
|
<script src="{{ $U('/node_modules/swagger-ui-dist/swagger-ui-standalone-preset.js?v=', true) }}{{ $version }}"></script>
|
|
<script src="{{ $U('/viewjs', true) }}/openapiui.js?v={{ $version }}"></script>
|
|
|
|
@if(file_exists(DATAPATH . '/add_before_end_body.html'))
|
|
@php include DATAPATH . '/add_before_end_body.html' @endphp
|
|
@endif
|
|
</body>
|
|
</html>
|