mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-12 18:28:27 +01:00
e98d942b04
A short page that displays the contents of a Theme's readme.md. Currently, a link to this page is only visible in the HTML meta tags if viewed as page source. This page can always be accessed on your.domain.com/theme/@littlelink_name. (For example your.domain.com/theme/@admin)
55 lines
1.2 KiB
PHP
55 lines
1.2 KiB
PHP
@extends('layouts.updater')
|
|
@foreach($information as $info)
|
|
|
|
@Push('updater-head')
|
|
<title>{{ $userinfo->name }} 🌇 {{ ucfirst(trans($info->theme)) }} </title>
|
|
<meta name="robots" content="noindex">
|
|
<style>
|
|
.container-theme {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.container-theme pre {
|
|
display: inline-block;
|
|
text-align: left;
|
|
}
|
|
</style>
|
|
@endpush
|
|
|
|
@Push('updater-body')
|
|
|
|
|
|
@if(file_exists(base_path("themes/$info->theme/readme.md")))
|
|
|
|
|
|
<div class="container-theme">
|
|
<h1>Theme: {{ ucfirst(trans($info->theme)) }}</h1>
|
|
<?php
|
|
$reg_exUrl = "/(http|https|ftp|ftps)\:\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?/";
|
|
|
|
$text = file_get_contents('themes/' . $info->theme . '/readme.md');
|
|
|
|
if(preg_match($reg_exUrl, $text, $url)) {
|
|
|
|
$txtspc = '<pre>' . preg_replace($reg_exUrl, "<a href=" . $url[0] . ">$url[0]</a> ", $text) . '</pre>';
|
|
echo preg_replace('/[ \t]+/', ' ', preg_replace('/\s\S*$^\s\S*/m', "\n", $txtspc));
|
|
|
|
} else {
|
|
|
|
echo '<pre>' . preg_replace('/[ \t]+/', ' ', preg_replace('/\s\S*$^\s\S*/m', "\n", $txtspc)) . '</pre>';
|
|
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
@else
|
|
<div class="container"><p>File not found</p></div>
|
|
@endif
|
|
|
|
|
|
@endforeach
|
|
@endpush
|