Skip to content

Commit

Permalink
Added new /links page
Browse files Browse the repository at this point in the history
  • Loading branch information
berrnd committed Sep 16, 2019
1 parent 3d3fd74 commit db155d4
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 7 deletions.
5 changes: 5 additions & 0 deletions index.php
Expand Up @@ -76,6 +76,11 @@
]);
});

$this->get('/links', function(Request $request, Response $response, array $args)
{
return $this->view->render($response, 'links');
});

$this->get('/impressum', function(Request $request, Response $response, array $args)
{
return $this->view->render($response, 'impressum', [
Expand Down
2 changes: 1 addition & 1 deletion views/changelog.blade.php
@@ -1,7 +1,7 @@
@extends('layout')

@section('title', 'Changelog & release history | grocy')
@section('lang', 'de')
@section('lang', 'en')

@section('headerAdditional')
<link rel="canonical" href="https://grocy.info/changelog">
Expand Down
7 changes: 4 additions & 3 deletions views/de.blade.php
Expand Up @@ -95,12 +95,13 @@
</p>
</div>
<div id="addons-intro" class="col-xs-12 col-lg-6">
<h2 class="bold sketch-underline">Add-ons / Tools</h2>
<h2 class="bold sketch-underline">Add-ons / Tools / Guides</h2>
<p class="lead major-info">
Siehe unten für weitere von der Community beigesteuerte Tools, Integrationen und andere nützliche Helferlein, die grocy noch besser und produktiver machen.
Von der Community beigesteuerte Tools, Integrationen, Installations-/Fehlersuche-Guides und andere nützliche Helferlein, die grocy noch besser und produktiver machen.
</p>
<p class="lead major-info">
<a class="btn btn-info" href="#addons">Community contributions</a>
<a class="btn btn-info" href="#addons"><i class="fas fa-tools"></i> Community contributions</a>
<a class="btn btn-info mt-2" href="https://grocy.info/links" target="_blank"><i class="fas fa-list"></i> List of community contributed help (and other) guides</a>
</p>
</div>
</section>
Expand Down
7 changes: 4 additions & 3 deletions views/en.blade.php
Expand Up @@ -121,12 +121,13 @@
</p>
</div>
<div id="addons-intro" class="col-xs-12 col-lg-6">
<h2 class="bold sketch-underline">Add-ons / Tools</h2>
<h2 class="bold sketch-underline">Add-ons / Tools / Guides</h2>
<p class="lead major-info">
See below for community contributed tools, integrations and other useful add-ons to make grocy even better and more productive.
Community contributed tools, integrations, install/troubleshooting guides and other useful add-ons to make grocy even better and more productive.
</p>
<p class="lead major-info">
<a class="btn btn-info" href="#addons">Community contributions</a>
<a class="btn btn-info" href="#addons"><i class="fas fa-tools"></i> Community contributions</a>
<a class="btn btn-info mt-2" href="https://grocy.info/links" target="_blank"><i class="fas fa-list"></i> List of community contributed help (and other) guides</a>
</p>
</div>
</section>
Expand Down
56 changes: 56 additions & 0 deletions views/links.blade.php
@@ -0,0 +1,56 @@
@extends('layout')

@section('title', 'Links | grocy')
@section('lang', 'en')

@section('headerAdditional')
<link rel="canonical" href="https://grocy.info/links">
@stop

@section('content')
<header class="container pt-3 pb-3">
<div class="row align-items-center">

<div class="col">
<h1 class="bold sketch-underline">Links</h1>
<h5 class="text-muted pt-3">A list of community contributed help- and troubleshooting guides and other articles about grocy</h5>
</div>

</div>
</header>

<div class="container pb-3">
<div class="row align-items-center">

<div class="col-xs-12 col-lg-10 offset-lg-1">

<p>
<h5>How to install on Ubuntu 16.04 using Apache</h5>
<a class="small" href="https://github.com/grocy/grocy/issues/357" target="_blank"><i class="fas fa-external-link-alt"></i> https://github.com/grocy/grocy/issues/357</a>
</p>

<hr class="mt-0 pb-0">

<p>
<h5>Install grocy in cPanel</h5>
<a class="small" href="https://github.com/grocy/grocy/issues/354" target="_blank"><i class="fas fa-external-link-alt"></i> https://github.com/grocy/grocy/issues/354</a>
</p>

<hr class="mt-0 pb-0">

<p>
<h5>Install grocy with nginx, PHP, SQLite on minimal system</h5>
<a class="small" href="https://github.com/grocy/grocy/issues/201#issuecomment-487074462" target="_blank"><i class="fas fa-external-link-alt"></i> https://github.com/grocy/grocy/issues/201#issuecomment-487074462</a>
</p>

<hr class="mt-0 pb-0">

<p>
<h5>Automating your shopping list with Home Assistant and grocy</h5>
<a class="small" href="https://philhawthorne.com/automating-your-shopping-list-with-home-assistant-and-grocy" target="_blank"><i class="fas fa-external-link-alt"></i> https://philhawthorne.com/automating-your-shopping-list-with-home-assistant-and-grocy</a>
</p>
</div>

</div>
</div>
@stop

0 comments on commit db155d4

Please sign in to comment.