summaryrefslogtreecommitdiff
path: root/resources/views/about.blade.php
diff options
context:
space:
mode:
authorhorus2020-04-19 18:28:17 +0200
committerhorus2020-04-19 18:28:17 +0200
commitea7f3c9c9ca72ee6efa9c345506ea9c92cdf1691 (patch)
treee4f31cad2fa3bab448ebd604841e7a4e57ab8bba /resources/views/about.blade.php
parentbf823c5063b5ad863e7e7cc313fb1406ddd14a98 (diff)
downloadcurious-ea7f3c9c9ca72ee6efa9c345506ea9c92cdf1691.tar.gz
Add footer with about page.
Diffstat (limited to 'resources/views/about.blade.php')
-rw-r--r--resources/views/about.blade.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/resources/views/about.blade.php b/resources/views/about.blade.php
new file mode 100644
index 0000000..143fe55
--- /dev/null
+++ b/resources/views/about.blade.php
@@ -0,0 +1,54 @@
+@extends('layouts.app')
+
+@section('styles')
+html {
+ height: 100%;
+}
+.hn {
+ display: inline-block;
+ font-size: inherit;
+ height: 1em;
+ overflow: visible;
+ vertical-align: -.125em;
+ fill: #ff6600;
+}
+
+@endsection
+
+@section('content')
+ <div style="margin-top: 20px" class="container">
+
+ <div class="card">
+ <h1 class="card-header">
+ More about <strong>{{ env('APP_NAME') }}</strong>
+ </h1>
+ <div class="card-body">
+ <p class="card-text">
+ {{ env('APP_NAME') }} is a resource of curious, obscure, inspiring, interesting and sometimes even scary insights. Dive deep in the worlds knowlegde. We focus on "anything that gratifies one's intellectual curiosity." Or to speak more clearly: Reading Wikipedia was my hobby, so I automated it.
+ <br>
+ <br>
+ Enter {{ env('APP_NAME') }}. This is a collection of curated Wikipedia articles, sourced primarily (for now) from <a href="https://news.ycombinator.com">{!! file_get_contents(public_path() . "/img/y-combinator.svg") !!} Hacker News</a>. For structured consuming most of them are further categorized in topics. For starting, I recommend <a href="{{ route('popular') }}">reading the most popular articles</a> or <a href="{{ route('popular_topics') }}">browse by topics</a>.
+ </p>
+ </div>
+ </div>
+<!--
+ <div style="margin-bottom: 20px"></div>
+
+ <div class="card">
+ <h1 class="card-header">
+ </h1>
+ <div class="card-body">
+ <p class="card-text">
+ </p>
+ </div>
+ </div>
+
+ <div style="margin-bottom: 20px"></div>
+
+-->
+ </div>
+@endsection
+
+@section ('footer')
+ @include ('layouts.footer')
+@endsection