Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Michael Iseard
Kudos-Website
Commits
72331ba2
Commit
72331ba2
authored
Oct 12, 2020
by
Michael Iseard
Browse files
Remove unused classes
parent
e8202af7
Changes
3
Hide whitespace changes
Inline
Side-by-side
resources/views/layouts/app.blade.php
View file @
72331ba2
...
...
@@ -8,8 +8,8 @@
@include('partials.page-title')
@endif
@yield('above-container')
<div
class=
"content
container-fluid flex-grow-1
"
role=
"document"
>
<main
class=
"
main
container
@yield('container-class')
"
>
<div
class=
"content"
role=
"document"
>
<main
class=
"container"
>
@yield('content')
</main>
@if (App\display_sidebar())
...
...
resources/views/page.blade.php
View file @
72331ba2
@
extends
(
'layouts.app'
)
@
section
(
'container-class'
,
'wrapper'
)
@
section
(
'content'
)
@
while
(
have_posts
())
@
php
the_post
()
@
endphp
@
include
(
'partials.content-page'
)
...
...
resources/views/single.blade.php
View file @
72331ba2
@
extends
(
'layouts.app'
)
@
section
(
'container-class'
,
'wrapper'
)
@
section
(
'content'
)
@
while
(
have_posts
())
@
php
the_post
()
@
endphp
@
include
(
'partials.content-single-'
.
get_post_type
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment