Skip to content
This repository was archived by the owner on Dec 6, 2019. It is now read-only.

Commit 79ffd02

Browse files
committed
Explicitly ignore the imprint, privacy, tos site
1 parent 0af4433 commit 79ffd02

File tree

7 files changed

+24
-8
lines changed

7 files changed

+24
-8
lines changed

_ide_helper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* A helper file for Laravel 5, to provide autocomplete information to your IDE
4-
* Generated for Laravel 5.2.29 on 2016-04-16.
4+
* Generated for Laravel 5.2.29 on 2016-04-18.
55
*
66
* @author Barry vd. Heuvel <barryvdh@gmail.com>
77
* @see https://github.com/barryvdh/laravel-ide-helper

app/MyApp.php

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<?php namespace App;
1+
<?php
2+
3+
namespace App;
24

35
use Illuminate\Foundation\Application;
46

5-
class MyApp extends Application
6-
{
7-
public function publicPath()
8-
{
9-
return $this->basePath.DIRECTORY_SEPARATOR.'www';
7+
class MyApp extends Application {
8+
9+
public function publicPath() {
10+
return $this->basePath . DIRECTORY_SEPARATOR . 'www';
1011
}
11-
}
12+
}

bootstrap/autoload.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
define('LARAVEL_START', microtime(true));
4+
define('LARAVEL_MEMORY', memory_get_usage());
45

56
/*
67
|--------------------------------------------------------------------------

resources/views/imprint.blade.php

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
@section('description', 'General information about this website and how you contact us')
66

7+
@push('meta')
8+
<meta name="robots" content="noindex,nofollow">
9+
@endpush
10+
711
@section('content')
812
<div class="container">
913
<div class="allContent">

resources/views/parent.blade.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
content="@yield('keywords', '') minecraft multiplayer serverlist, minecraft database, minecraft server"/>
99
<meta name="viewport" content="width=device-width, initial-scale=1">
1010

11+
@stack('meta')
12+
1113
<title>@yield('title') | Minecraft Database</title>
1214
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
1315
<link rel="stylesheet" href="/css/app.css"/>

resources/views/privacy.blade.php

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
@section('description', 'Learn more about our privacy policies. How we use your data and how you delete them')
66

7+
@push('meta')
8+
<meta name="robots" content="noindex,nofollow">
9+
@endpush
10+
711
@section('content')
812
<div class="container">
913
<div class="allContent">

resources/views/tos.blade.php

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
@section('description', 'Terms of Service for this website')
66

7+
@push('meta')
8+
<meta name="robots" content="noindex,nofollow">
9+
@endpush
10+
711
@section('content')
812
<div class="container">
913
<div class="allContent">

0 commit comments

Comments
 (0)