Browse Source

Update Help Center, add tagging people section

Daniel Supernault 5 years ago
parent
commit
739f459b86
2 changed files with 30 additions and 1 deletions
  1. 29 0
      resources/views/site/help/tagging-people.blade.php
  2. 1 1
      routes/web.php

+ 29 - 0
resources/views/site/help/tagging-people.blade.php

@@ -0,0 +1,29 @@
+@extends('site.help.partial.template', ['breadcrumb'=>'Tagging People'])
+
+@section('section')
+
+  <div class="title">
+    <h3 class="font-weight-bold">Tagging People</h3>
+  </div>
+  <hr>
+  <p class="lead">Tag people in your posts without mentioning them in the caption.</p>
+  <div class="py-4">
+    <p class="font-weight-bold h5 pb-3">Tagging People in Posts</p>
+    <ul>
+      <li class="mb-3 ">You can only tag <span class="font-weight-bold">local</span> and <span class="font-weight-bold">public</span> accounts who haven't blocked you.</li>
+      <li class="mb-3 ">You can tag up to <span class="font-weight-bold">10</span> people.</li>
+    </ul>
+  </div>
+  <hr>
+  <div class="card bg-primary border-primary" style="box-shadow: none !important;border: 3px solid #08d!important;">
+    <div class="card-header text-light font-weight-bold h4 p-4 bg-primary">Tagging Tips</div>
+    <div class="card-body bg-white p-3">
+      <ul class="pt-3">
+        <li class="lead  mb-4">Tagging someone will send them a notification.</li>
+        <li class="lead  mb-4">You can untag yourself from posts.</li>
+        <li class="lead ">Only tag people you know.</li>
+
+      </ul>
+    </div>
+  </div>
+@endsection

+ 1 - 1
routes/web.php

@@ -420,7 +420,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
             Route::view('report-something', 'site.help.report-something')->name('help.report-something');
             Route::view('data-policy', 'site.help.data-policy')->name('help.data-policy');
             Route::view('labs-deprecation', 'site.help.labs-deprecation')->name('help.labs-deprecation');
-
+            Route::view('tagging-people', 'site.help.tagging-people')->name('help.tagging-people');
         });
         Route::get('newsroom/{year}/{month}/{slug}', 'NewsroomController@show');
         Route::get('newsroom/archive', 'NewsroomController@archive');