diff --git a/public/fonts/fa-dtbl-1-preview.html b/public/fonts/fa-dtbl-1-preview.html index 4f18048..85ecbff 100644 --- a/public/fonts/fa-dtbl-1-preview.html +++ b/public/fonts/fa-dtbl-1-preview.html @@ -184,6 +184,7 @@ .fa-star-o:before, .fa-table:before, .fa-th-list:before, +.fa-user:before, .fa-user-circle-o:before, .fa-user-plus:before, .fa-users:before { @@ -224,9 +225,10 @@ .fa-star-o:before { content: "\f114"; } .fa-table:before { content: "\f115"; } .fa-th-list:before { content: "\f116"; } -.fa-user-circle-o:before { content: "\f117"; } -.fa-user-plus:before { content: "\f118"; } -.fa-users:before { content: "\f119"; } +.fa-user:before { content: "\f117"; } +.fa-user-circle-o:before { content: "\f118"; } +.fa-user-plus:before { content: "\f119"; } +.fa-users:before { content: "\f11a"; } @@ -242,7 +244,7 @@
-

fa-dtbl-1 contains 26 glyphs:

+

fa-dtbl-1 contains 27 glyphs:

Toggle Preview Characters
@@ -548,6 +550,19 @@
+
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+
PpPpPpPpPpPpPpPpPpPp @@ -557,7 +572,7 @@
- +
@@ -570,7 +585,7 @@
- +
@@ -583,7 +598,7 @@
- +
diff --git a/public/fonts/fa-dtbl-1.css b/public/fonts/fa-dtbl-1.css index bf5518f..80471df 100644 --- a/public/fonts/fa-dtbl-1.css +++ b/public/fonts/fa-dtbl-1.css @@ -61,6 +61,7 @@ .fa-star-o::before { content: "\f114"; } .fa-table::before { content: "\f115"; } .fa-th-list::before { content: "\f116"; } -.fa-user-circle-o::before { content: "\f117"; } -.fa-user-plus::before { content: "\f118"; } -.fa-users::before { content: "\f119"; } +.fa-user::before { content: "\f117"; } +.fa-user-circle-o::before { content: "\f118"; } +.fa-user-plus::before { content: "\f119"; } +.fa-users::before { content: "\f11a"; } diff --git a/public/fonts/fa-dtbl-1.eot b/public/fonts/fa-dtbl-1.eot index 0db98fc..9c9fbd2 100644 Binary files a/public/fonts/fa-dtbl-1.eot and b/public/fonts/fa-dtbl-1.eot differ diff --git a/public/fonts/fa-dtbl-1.svg b/public/fonts/fa-dtbl-1.svg index 46c1270..9c44f11 100644 --- a/public/fonts/fa-dtbl-1.svg +++ b/public/fonts/fa-dtbl-1.svg @@ -5,7 +5,7 @@ --> -Created by FontForge 20170805 at Sun Jul 29 11:26:42 2018 +Created by FontForge 20170805 at Sun Jul 29 12:59:14 2018 By ondra The Fork Awesome font is licensed under the SIL OFL 1.1 (http://scripts.sil.org/OFL). Fork Awesome is a fork based of off Font Awesome 4.7.0 by Dave Gandy. More info on licenses at https://forkawesome.github.io @@ -22,7 +22,7 @@ The Fork Awesome font is licensed under the SIL OFL 1.1 (http://scripts.sil.org/ bbox="-0.14014 -256.168 2048 1536.01" underline-thickness="89.6" underline-position="-179.2" - unicode-range="U+0020-F119" + unicode-range="U+0020-F11A" /> - + - - diff --git a/public/fonts/fa-dtbl-1.ttf b/public/fonts/fa-dtbl-1.ttf index a94926b..7b9bbd4 100644 Binary files a/public/fonts/fa-dtbl-1.ttf and b/public/fonts/fa-dtbl-1.ttf differ diff --git a/public/fonts/fa-dtbl-1.woff2 b/public/fonts/fa-dtbl-1.woff2 index c492287..b0f6a69 100644 Binary files a/public/fonts/fa-dtbl-1.woff2 and b/public/fonts/fa-dtbl-1.woff2 differ diff --git a/resources/views/greeter.blade.php b/resources/views/greeter.blade.php index 191efab..4089ba7 100644 --- a/resources/views/greeter.blade.php +++ b/resources/views/greeter.blade.php @@ -21,7 +21,7 @@ @guest

- The table directory is open to anyone, and can be used without login. However, + The directory is open to anyone, and can be used without login. However, you will miss out on some features, like the ability to create or edit tables, post comments, or save export presets. You can register using your e-mail and a password, or through Google, diff --git a/resources/views/profile/_table-list.blade.php b/resources/views/profile/_table-list.blade.php index d767273..69d9b2b 100644 --- a/resources/views/profile/_table-list.blade.php +++ b/resources/views/profile/_table-list.blade.php @@ -1,21 +1,27 @@ +@php + if (!isset($showAuthors)) $showAuthors = false; +@endphp +

@if(count($tables) == 0) No tables yet. @else @foreach($tables as $table) @php - $forks = $table->forks_count; - $faves = $table->favourites_count; - $revs = $table->revisions_count; - $rows = $table->revision->row_count; + $forks = $table->forks_count; + $faves = $table->favourites_count; + $revs = $table->revisions_count; + $rows = $table->revision->row_count; @endphp - {{-- this must be span so that Lynx includes the table name in the anchor --}} -
- @icon(fa-table fa-pr){{ $table->title }} -
{{-- - --}}
{{-- + {{-- this must be span so that Lynx includes the table name in the anchor --}} + + @icon(fa-table fa-pr){!! + $showAuthors ? (e($table->owner->handle) . '/') : '' + !!}{{ $table->title }} + {{-- + --}}
{{-- --}} {{ $table->visits }}@icon(fa-eye fa-pl, ~Visits~~) {{-- @@ -35,12 +41,12 @@
-
+
@sr(Description:~){{ ellipsis($table->description, 215) }}
{{-- --}}
- Last change {{ $table->updated_at->diffForHumans() }} + Last change {{ $table->updated_at->diffForHumans() }}@icon(fa-history fa-pl, sr:Owner)
diff --git a/resources/views/profile/view.blade.php b/resources/views/profile/view.blade.php index 84ca117..2773911 100644 --- a/resources/views/profile/view.blade.php +++ b/resources/views/profile/view.blade.php @@ -46,7 +46,7 @@ @icon(fa-vcard-o, User's handle:) - {{ $user->handle }} + {{ $user->handle }} diff --git a/resources/views/table/view.blade.php b/resources/views/table/view.blade.php index 8981d74..64ba806 100644 --- a/resources/views/table/view.blade.php +++ b/resources/views/table/view.blade.php @@ -12,7 +12,7 @@ {{ $table->owner->handle }}{{-- --}}/{{-- - --}}{{ $table->name }} + --}}{{ $table->name }}

{{ $table->title }}

diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 0bf2126..0d5aef6 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -46,7 +46,7 @@
- @include('profile._table-list') + @include('profile._table-list', ['showAuthors' => true])