small fixes
This commit is contained in:
parent
340f500206
commit
fe3ae82100
|
@ -20,7 +20,7 @@ function getApi(array $proxy_elements): \Sovit\TikTok\Api {
|
||||||
function getLatte(): \Latte\Engine {
|
function getLatte(): \Latte\Engine {
|
||||||
$subdir = getSubdir();
|
$subdir = getSubdir();
|
||||||
$latte = new Latte\Engine;
|
$latte = new Latte\Engine;
|
||||||
$latte->setTempDirectory('./cache/views');
|
$latte->setTempDirectory(__DIR__ . '/../cache/views');
|
||||||
$latte->addFunction('assets', function (string $name, string $type) use ($subdir) {
|
$latte->addFunction('assets', function (string $name, string $type) use ($subdir) {
|
||||||
$path = "{$subdir}/{$type}/{$name}";
|
$path = "{$subdir}/{$type}/{$name}";
|
||||||
return $path;
|
return $path;
|
||||||
|
@ -33,7 +33,7 @@ function getLatte(): \Latte\Engine {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getView(string $template): string {
|
function getView(string $template): string {
|
||||||
return "./views/{$template}.latte";
|
return __DIR__ . "/../views/{$template}.latte";
|
||||||
}
|
}
|
||||||
|
|
||||||
Route::add('/', function () {
|
Route::add('/', function () {
|
||||||
|
|
|
@ -3,5 +3,5 @@
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="https://unpkg.com/bulmaswatch/superhero/bulmaswatch.min.css">
|
<link rel="stylesheet" href="https://unpkg.com/bulmaswatch/superhero/bulmaswatch.min.css">
|
||||||
<title>{$title} - Tiktok Viewer</title>
|
<title>{$title} - Tiktok Alt-Frontend</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -8,8 +8,7 @@
|
||||||
<section class="hero is-fullheight-with-navbar">
|
<section class="hero is-fullheight-with-navbar">
|
||||||
<div class="hero-body">
|
<div class="hero-body">
|
||||||
<div class="container has-text-centered">
|
<div class="container has-text-centered">
|
||||||
<p class="title">Welcome to TikTok Viewer!</p>
|
<p class="title">Welcome to TikTok Alt-Frontend!</p>
|
||||||
<p class="subtitle">Alternative TikTok Frontend</p>
|
|
||||||
<p>Search user:</p>
|
<p>Search user:</p>
|
||||||
<form id="username_form">
|
<form id="username_form">
|
||||||
<div class="field has-addons has-addons-centered">
|
<div class="field has-addons has-addons-centered">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
{include 'components/head.latte', title: 'Challenge'}
|
{include 'components/head.latte', title: 'Tag'}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
{include 'components/navbar.latte'}
|
{include 'components/navbar.latte'}
|
||||||
|
|
Loading…
Reference in a new issue