blob: dd2d8bb1f1d5fa609fda7a3ac3034983cbe392f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
@extends('layouts.master')
@section('master-content')
<p class="lead">
Thank you for wanting to help out! To expand our database, we are looking for volunteers to enter more verbs.
</p>
@if(!Auth::check())
<a class="btn btn-lg btn-primary" href="{{ env('APP_URL') }}contribute?login=yes">Login</a>
<a class="btn btn-lg btn-success" href="{{ env('APP_URL') }}user/create">Sign up</a>
@endif
<h3>Here's how it works:</h3>
<ul>
<li>Any user can <em>suggest new verbs</em>.</li>
<li>These have to be <em>peer-reviewed</em> by other contributors.</li>
<li>It has to get <em>five</em> votes to be accepted.</li>
<li>Contributors <em>earn points</em> for all accepted verbs they suggested.</li>
<li>The <em>vote weight</em> is dependent on the number of points a user has.</li>
</ul>
<p>
If you have any questions, please write me at <a href="mailto:info@camilstaps.nl">info@camilstaps.nl</a>.
</p>
@if(Auth::check())
<hr/>
<div class="row">
<div class="col-md-6">
@include('suggestions')
</div>
<div class="col-lg-4 col-md-6">
@include('suggest')
</div>
<div class="col-lg-2 col-md-6">
@include('add_root')
</div>
</div>
@endif
<hr/>
<div class="row">
<div class="col-md-6 col-lg-4">
@include('user.top')
</div>
</div>
@endsection
|