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
open-source
MetaGer
Commits
15754e5b
Commit
15754e5b
authored
Mar 01, 2018
by
Dominik Hebeler
Browse files
JavaScript nun auch Inline angewendet.
parent
d7c1ab6c
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
resources/views/index.blade.php
View file @
15754e5b
...
...
@@ -326,7 +326,11 @@
</
li
>
@
endif
</
ul
>
<
script
src
=
"{{ mix('/js/scriptStartPage.js') }}"
defer
></
script
>
<
script
type
=
"text/javascript"
>
@
php
echo
file_get_contents
(
public_path
()
.
mix
(
'/js/scriptStartPage.js'
));
@
endphp
</
script
>
@
endsection
@
section
(
'optionalContent'
)
...
...
resources/views/layouts/staticPages.blade.php
View file @
15754e5b
...
...
@@ -20,8 +20,16 @@
@endphp
</style>
<link
id=
"theme"
type=
"text/css"
rel=
"stylesheet"
href=
"/css/theme.css.php"
/>
<script
src=
"{{ mix('js/scriptSubPages.js') }}"
defer
></script>
<script
src=
"{{ mix('js/lib.js') }}"
defer
></script>
<script
type=
"text/javascript"
>
@
php
echo
file_get_contents
(
public_path
()
.
mix
(
'
js/scriptSubPages.js
'
));
@
endphp
</script>
<script
type=
"text/javascript"
>
@
php
echo
file_get_contents
(
public_path
()
.
mix
(
'
js/lib.js
'
));
@
endphp
</script>
@if (isset($css))
@if(is_array($css))
@foreach($css as $el)
...
...
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