You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lib/src/resources/views/welcome.pug

19 lines
968 B

extends base
block content
ex-nav
img(src=vendor('@extollo/lib', 'extollo.svg') slot='branding' width=115 style="margin-right: 30px" alt=config('app.name'))
ex-nav-item(title='Home' name='home' href=route('/'))
ex-nav-item(title='Documentation' name='documentation' href='https://extollo.garrettmills.dev')
if hasRoute('@auth.login')
if user()
ex-nav-item(title='Welcome, ' + user().getDisplay() name='user' href=named('@auth.logout') right)
else
ex-nav-item(title='Login' name='login' href=named('@auth.login') right)
h1 Welcome to #{config('app.name')}
p You have successfully created your new application, #{config('app.name')}, based on the Extollo framework.
p For more information on Extollo, visit the framework documentation using the link above.
blockquote You can customize this view by modifying <code>src/app/resources/views/welcome.pug</code>.