2016-07-21 22:01:57 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2018-07-06 14:49:39 +08:00
|
|
|
<title>{{ option_localized('site_name') }}</title>
|
2019-04-04 11:40:18 +08:00
|
|
|
@include('common.favicon')
|
2016-07-21 22:01:57 +08:00
|
|
|
<!-- Tell the browser to be responsive to screen width -->
|
2018-08-21 11:08:13 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
2019-03-16 21:52:09 +08:00
|
|
|
@include('common.seo-meta-tags')
|
2016-07-21 22:01:57 +08:00
|
|
|
<!-- App Styles -->
|
2019-03-19 19:29:44 +08:00
|
|
|
@include('common.dependencies.style')
|
2016-07-21 22:01:57 +08:00
|
|
|
</head>
|
|
|
|
|
2016-09-15 23:03:58 +08:00
|
|
|
<body class="hold-transition {{ option('color_scheme') }} layout-top-nav">
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2019-04-01 09:56:04 +08:00
|
|
|
<div class="hp-wrapper" style="background-image: url('{{ $home_pic_url }}'); height: 100vh;">
|
2016-12-11 15:17:24 +08:00
|
|
|
<!-- Navigation -->
|
2019-04-19 19:32:15 +08:00
|
|
|
<header class="main-header {{ $transparent_navbar ? 'transparent' : ''}}">
|
2016-12-11 15:17:24 +08:00
|
|
|
<nav class="navbar navbar-fixed-top">
|
2016-07-21 22:01:57 +08:00
|
|
|
<div class="container">
|
|
|
|
<div class="navbar-header">
|
2018-07-06 14:49:39 +08:00
|
|
|
<a href="{{ option('site_url') }}" class="navbar-brand">{{ option_localized('site_name') }}</a>
|
2016-07-21 22:01:57 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Collect the nav links, forms, and other content for toggling -->
|
|
|
|
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
|
|
|
|
<ul class="nav navbar-nav">
|
2018-07-17 11:06:55 +08:00
|
|
|
<li class="active"><a href="{{ url('/') }}">@lang('general.index')</a></li>
|
|
|
|
<li><a href="{{ url('skinlib') }}">@lang('general.skinlib')</a></li>
|
2016-09-25 10:40:39 +08:00
|
|
|
</ul>
|
|
|
|
</div><!-- /.navbar-collapse -->
|
|
|
|
<!-- Navbar Right Menu -->
|
|
|
|
<div class="navbar-custom-menu">
|
|
|
|
<ul class="nav navbar-nav">
|
2017-07-03 20:54:19 +08:00
|
|
|
@include('common.language')
|
2016-12-11 15:17:24 +08:00
|
|
|
|
2018-07-20 14:42:43 +08:00
|
|
|
@auth
|
2017-07-03 20:54:19 +08:00
|
|
|
@include('common.user-menu')
|
2016-09-15 23:03:58 +08:00
|
|
|
@else {{-- Anonymous User --}}
|
|
|
|
<!-- User Account Menu -->
|
|
|
|
<li class="dropdown user user-menu">
|
2018-07-17 11:06:55 +08:00
|
|
|
<a href="{{ url('auth/login') }}" class="btn btn-login">@lang('general.login')</a>
|
2016-09-15 23:03:58 +08:00
|
|
|
</li>
|
2018-07-20 14:42:43 +08:00
|
|
|
@endauth
|
2016-07-21 22:01:57 +08:00
|
|
|
</ul>
|
2016-09-15 23:03:58 +08:00
|
|
|
</div><!-- /.navbar-custom-menu -->
|
2016-07-21 22:01:57 +08:00
|
|
|
</div><!-- /.container-fluid -->
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
|
2016-12-11 15:17:24 +08:00
|
|
|
<div class="container">
|
|
|
|
<div class="splash">
|
2018-07-06 14:49:39 +08:00
|
|
|
<h1 class="splash-head">{{ option_localized('site_name') }}</h1>
|
2016-12-11 15:17:24 +08:00
|
|
|
<p class="splash-subhead">
|
2018-07-06 14:49:39 +08:00
|
|
|
{{ option_localized('site_description') }}
|
2016-12-11 15:17:24 +08:00
|
|
|
</p>
|
|
|
|
<p>
|
2018-07-20 14:42:43 +08:00
|
|
|
@guest
|
2016-12-11 15:17:24 +08:00
|
|
|
@if (option('user_can_register'))
|
2018-07-17 11:06:55 +08:00
|
|
|
<a href="{{ url('auth/register') }}" id="btn-register" class="button">@lang('general.register')</a>
|
2016-09-10 17:02:47 +08:00
|
|
|
@else
|
2018-07-17 11:06:55 +08:00
|
|
|
<a href="{{ url('auth/login') }}" id="btn-close-register" class="button">@lang('general.login')</a>
|
2016-09-10 17:02:47 +08:00
|
|
|
@endif
|
2016-12-11 15:17:24 +08:00
|
|
|
@else
|
2018-07-17 11:06:55 +08:00
|
|
|
<a href="{{ url('user') }}" class="button">@lang('general.user-center')</a>
|
2018-07-20 14:42:43 +08:00
|
|
|
@endguest
|
2016-12-11 15:17:24 +08:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div> <!--/ .container -->
|
|
|
|
</div><!--/ #headerwrap -->
|
|
|
|
|
|
|
|
<!-- INTRO WRAP -->
|
|
|
|
<div id="intro">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row text-center">
|
|
|
|
<h1>Features</h1>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<div class="col-lg-4">
|
2018-08-13 19:04:04 +08:00
|
|
|
<i class="fas {{ trans('index.features.first.icon') }}" aria-hidden="true"></i>
|
|
|
|
<h3>{!! trans('index.features.first.name') !!}</h3>
|
|
|
|
<p>{!! trans('index.features.first.desc') !!}</p>
|
2016-12-11 15:17:24 +08:00
|
|
|
</div>
|
|
|
|
<div class="col-lg-4">
|
2018-08-13 19:04:04 +08:00
|
|
|
<i class="fas {{ trans('index.features.second.icon') }}" aria-hidden="true"></i>
|
|
|
|
<h3>{!! trans('index.features.second.name') !!}</h3>
|
|
|
|
<p>{!! trans('index.features.second.desc') !!}</p>
|
2016-12-11 15:17:24 +08:00
|
|
|
</div>
|
|
|
|
<div class="col-lg-4">
|
2018-08-13 19:04:04 +08:00
|
|
|
<i class="fas {{ trans('index.features.third.icon') }}" aria-hidden="true"></i>
|
|
|
|
<h3>{!! trans('index.features.third.name') !!}</h3>
|
|
|
|
<p>{!! trans('index.features.third.desc') !!}</p>
|
2016-07-21 22:01:57 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-11 15:17:24 +08:00
|
|
|
<br>
|
|
|
|
</div> <!--/ .container -->
|
|
|
|
</div><!--/ #introwrap -->
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2016-12-11 15:17:24 +08:00
|
|
|
<div id="footerwrap">
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-lg-6">
|
2018-08-13 19:04:04 +08:00
|
|
|
{!! trans('index.introduction', ['sitename' => option_localized('site_name')]) !!}
|
2016-07-21 22:01:57 +08:00
|
|
|
</div>
|
|
|
|
|
2016-12-11 15:17:24 +08:00
|
|
|
<div class="col-lg-6">
|
2018-07-17 11:06:55 +08:00
|
|
|
<a href="{{ url('auth/register') }}" id="btn-register" class="button">@lang('index.start')</a>
|
2016-12-11 15:17:24 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="copyright">
|
|
|
|
<!-- Designed by Pratt -->
|
|
|
|
<div class="container">
|
|
|
|
<!-- YOU CAN NOT MODIFIY THE COPYRIGHT TEXT W/O PERMISSION -->
|
2017-01-21 12:59:35 +08:00
|
|
|
<div id="copyright-text" class="pull-right hidden-xs">
|
2019-04-08 16:07:42 +08:00
|
|
|
@include('common.copyright')
|
2016-12-11 15:17:24 +08:00
|
|
|
</div>
|
|
|
|
<!-- Default to the left -->
|
2019-04-04 11:40:18 +08:00
|
|
|
@include('common.custom-copyright')
|
2016-12-11 15:17:24 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2019-04-19 19:32:15 +08:00
|
|
|
<script>
|
2019-04-23 19:17:53 +08:00
|
|
|
blessing.extra = @json(['transparent_navbar' => (bool) $transparent_navbar])
|
2019-04-19 19:32:15 +08:00
|
|
|
</script>
|
|
|
|
|
2016-07-21 22:01:57 +08:00
|
|
|
<!-- App Scripts -->
|
2017-07-14 09:45:30 +08:00
|
|
|
@include('common.dependencies.script')
|
2016-07-21 22:01:57 +08:00
|
|
|
</body>
|
|
|
|
</html>
|