Browse Source

Add site blade views

Daniel Supernault 7 years ago
parent
commit
fb8a17ad6b

+ 9 - 0
resources/views/site/bannedinstances.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Banned Instances</h3>
+  </div>
+  <hr>
+@endsection

+ 9 - 0
resources/views/site/features.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Features</h3>
+  </div>
+  <hr>
+@endsection

+ 9 - 0
resources/views/site/fediverse.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Fediverse</h3>
+  </div>
+  <hr>
+@endsection

+ 9 - 0
resources/views/site/help.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Help</h3>
+  </div>
+  <hr>
+@endsection

+ 9 - 0
resources/views/site/libraries.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Libraries</h3>
+  </div>
+  <hr>
+@endsection

+ 9 - 0
resources/views/site/opensource.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Open Source</h3>
+  </div>
+  <hr>
+@endsection

+ 9 - 0
resources/views/site/platform.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Platform/API Terms Of Use</h3>
+  </div>
+  <hr>
+@endsection

+ 9 - 0
resources/views/site/terms.blade.php

@@ -0,0 +1,9 @@
+@extends('site.partial.template')
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Terms Of Use</h3>
+  </div>
+  <hr>
+@endsection