blob: 143fe55f362afc801cb61da7ef9014b746d308df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
|