mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 20:54:04 -06:00
42 lines
1011 B
PHP
42 lines
1011 B
PHP
@extends('layouts.default')
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<h1>Firefly
|
|
@if($count > 0)
|
|
<br/>
|
|
<small>What's playing?</small>
|
|
@endif
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
@if($count == 0)
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
<p class="lead">Welcome to Firefly III.</p>
|
|
<p>
|
|
To get get started, choose below:
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-6 col-md-6 col-sm-12">
|
|
<h2><a href="{{route('migrate')}}">Migrate from Firefly II</a></h2>
|
|
<p>
|
|
Use this option if you have a JSON file from your current Firefly II installation.
|
|
</p>
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-sm-12">
|
|
<h2><a href="#">Start from scratch</a></h2>
|
|
<p>
|
|
Use this option if you are new to Firefly (III).
|
|
</p>
|
|
</div>
|
|
@else
|
|
|
|
|
|
@endif
|
|
|
|
@stop
|
|
@section('scripts')
|
|
@stop |