Skip to content

Commit b35518e

Browse files
Erick Rochaerickpatrick
Erick Rocha
authored andcommitted
updates admin file to not extend any template
1 parent 21dd3e3 commit b35518e

File tree

1 file changed

+24
-20
lines changed

1 file changed

+24
-20
lines changed

source/admin.blade.php

+24-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
@extends('_layouts.admin')
2-
3-
@push('meta')
4-
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
5-
@endpush
6-
7-
@push('scriptsBeforeBodyend')
8-
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
9-
<script>
10-
if (window.netlifyIdentity) {
11-
window.netlifyIdentity.on("init", user => {
12-
if (!user) {
13-
window.netlifyIdentity.on("login", () => {
14-
document.location.href = "/admin/";
15-
});
16-
}
17-
});
18-
}
19-
</script>
20-
@endpush
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<title>Admin | {{ $page->site->title }}</title>
8+
<script src="https://identity.netlify.com/v1/netlify-identity-widget.js"></script>
9+
</head>
10+
<body>
11+
<script src="https://unpkg.com/netlify-cms@^2.0.0/dist/netlify-cms.js"></script>
12+
<script>
13+
if (window.netlifyIdentity) {
14+
window.netlifyIdentity.on("init", user => {
15+
if (!user) {
16+
window.netlifyIdentity.on("login", () => {
17+
document.location.href = "/admin/";
18+
});
19+
}
20+
});
21+
}
22+
</script>
23+
</body>
24+
</html>

0 commit comments

Comments
 (0)