From bf823c5063b5ad863e7e7cc313fb1406ddd14a98 Mon Sep 17 00:00:00 2001 From: horus Date: Mon, 13 Apr 2020 23:25:42 +0200 Subject: Add new page popular topics. --- resources/views/topicpopular.blade.php | 37 ++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 resources/views/topicpopular.blade.php (limited to 'resources/views/topicpopular.blade.php') diff --git a/resources/views/topicpopular.blade.php b/resources/views/topicpopular.blade.php new file mode 100644 index 0000000..f6a2c8a --- /dev/null +++ b/resources/views/topicpopular.blade.php @@ -0,0 +1,37 @@ +@extends ('layouts.app') + +@section ('styles') +html { + height: inherit; +} +@endsection + +@section ('content') + +
+ +
+
+

+ Popular Topics +

+
+

+ Hint: You are looking at popular topics. If you are interested in the most popular articles instead, click here instead. +

+
+
+
+ +
+
+ @foreach ($topics as $topic) + @if ( "" != $topic->name ) + {{ ucwords($topic->name) }} ({{ $topic->count }} Articles) + @endif + @endforeach +
+
+ +
+@endsection -- cgit v1.2.3