Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
2
2020-03-03 itmax-84
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Playground
2020-03-03 itmax-84
Commits
4a18828f
Commit
4a18828f
authored
Jan 29, 2020
by
Marco Schmiedel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes
parent
a06ed501
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
29 additions
and
14 deletions
+29
-14
index.blade.php
resources/views/example/index.blade.php
+22
-12
index.css
resources/views/example/index.css
+3
-0
index.jpg
resources/views/example/index.jpg
+0
-0
index.js
resources/views/example/index.js
+1
-0
web.php
routes/web.php
+3
-2
No files found.
resources/views/
welcome
.blade.php
→
resources/views/
example/index
.blade.php
View file @
4a18828f
...
...
@@ -9,40 +9,50 @@
{{
--
Custom
Assets
--
}}
@
section
(
'limitless::assets'
)
<
script
src
=
"@publish( base_path().'/resources/views/example/index.js' )"
></
script
>
<
link
rel
=
"stylesheet"
href
=
"@publish( base_path().'/resources/views/example/index.css' )"
>
<
script
>
console
.
log
(
'Add some custom javascript
or css
here...'
);
console
.
log
(
'Add some custom javascript here...'
);
</
script
>
@
endsection
{{
--
Navigation
--
}}
@
section
(
'limitless::navigation'
)
@
mainNavigationItem
(
'https://google.de'
,
'icon-home8'
,
'Link'
,
'_blank'
)
@
mainNavigationItem
(
'https://ebay.de'
,
'icon-home'
,
'Link'
,
'_self'
)
@
mainNavigationDevider
@
mainNavigationSubmenu
(
'icon-home'
,
'Dropdown'
)
@
mainNavigationItem
(
'https://ebay.de'
,
'icon-home8'
,
'Link'
,
'_self'
)
@
mainNavigationItem
(
'https://ebay.de'
,
'icon-home8'
,
'Link'
,
'_self'
)
@
mainNavigationSubmenu
(
'icon-home2'
,
'Dropdown'
)
@
mainNavigationItem
(
'https://ebay.de'
,
'icon-home8'
,
'Link'
,
'_self'
)
@
mainNavigationItem
(
'https://ebay.de'
,
'icon-home8'
,
'Link'
,
'_self'
)
@
endmainNavigationSubmenu
@
endmainNavigationSubmenu
@
endsection
{{
--
Content
--
}}
@
section
(
'limitless::content'
)
@
card
(
'First Card'
)
Lorem
ipsum
dolor
sit
amet
,
consetetur
sadipscing
elitr
,
sed
diam
nonumy
eirmod
tempor
invidunt
ut
labore
et
dolore
magna
aliquyam
erat
,
sed
diam
voluptua
.
At
vero
eos
et
accusam
et
justo
duo
dolores
et
ea
rebum
.
Stet
clita
kasd
gubergren
,
no
sea
takimata
sanctus
est
Lorem
ipsum
dolor
sit
amet
.
Lorem
gubergren
,
no
sea
takimata
sanctus
est
Lorem
ipsum
dolor
sit
amet
.
<
br
/>
<
img
class
="
exampleImage
" src="
@
publish
(
base_path
()
.
'/resources/views/example/index.jpg'
)
" />
@endcard
@card('Seccond Card')
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod
tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.
At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd
gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem
@endcard
@endsection
{{-- Footer --}}
@section('limitless::footer')
@
copyright
(
'Copyright © '
.
date
(
'Y'
)
.
' IT-Max GmbH. Alle Rechte vorbehalten.'
)
@copyright('Copyright © '.date('Y').' IT-Max GmbH.')
@footerNavigation
@
footerNavigationItem
(
'https://google.de'
,
'icon-home8'
,
'Home'
)
@
footerNavigationItem
(
'https://google.de'
,
'icon-price-tags2'
,
'Ticket'
)
@footerNavigationItem('https://google.de','icon-home8','Home'
, '_self'
)
@footerNavigationItem('https://google.de','icon-price-tags2','Ticket'
, '_blank'
)
@endfooterNavigation
@endsection
resources/views/example/index.css
0 → 100644
View file @
4a18828f
.exampleImage
{
width
:
350px
!important
;
}
resources/views/example/index.jpg
0 → 100644
View file @
4a18828f
25.3 KB
resources/views/example/index.js
0 → 100644
View file @
4a18828f
console
.
log
(
'
This javascript is loaded by the limitless publisher.
'
);
routes/web.php
View file @
4a18828f
...
...
@@ -11,6 +11,7 @@
|
*/
Route
::
get
(
'/'
,
function
()
{
return
view
(
'welcome'
);
Route
::
get
(
'/'
,
function
()
{
return
view
(
'example/index'
);
});
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