コミットを比較

...

3 コミット

作成者 SHA1 メッセージ 日付
守矢諏訪子 c2be7a4b7d 動画 (β) 2021-12-16 01:38:27 +09:00
守矢諏訪子 de9dd1e2dd tor 2021-12-16 01:35:50 +09:00
守矢諏訪子 100ad42b93 デフォルトパス 2021-12-16 01:35:12 +09:00
3個のファイルの変更8行の追加1行の削除

ファイルの表示

@ -5,4 +5,5 @@
<a href="/{{ $m['slug'] }}" class="nav-link {{ ($_SERVER['REQUEST_URI'] == '/'.$m['slug'] ? 'bara' : 'bar') }}">{{ $m['title'] }}</a>
@endforeach
<a href="/video" class="nav-link {{ ($_SERVER['REQUEST_URI'] == '/video' ? 'bara' : 'bar') }}">動画</a>
<a href="/peertube">動画 (β)</a>
</div>

ファイルの表示

@ -4,7 +4,7 @@
<span class="icon icon-logo"></span>
<span class="instance-name">076動画</span>
</a>
<a class="peertube-title c-hand" href="http://{{ env('ONION_HOST') }}">
<a class="peertube-title c-hand" href="http://{{ env('ONION_HOST') }}/peertube">
<span class="icon icon-logo"></span>
<span class="publish-button-label">Tor</span>
</a>

ファイルの表示

@ -1,6 +1,8 @@
<?php
Route::group(['prefix' => 'peertube'], function () {
Route::any('/', 'Peertube\Videos\Local@index');
Route::any('/a/{id}/{cat?}', 'Peertube\Account@index');
Route::any('/c/{id}/{cat?}/{page?}', 'Peertube\Channel@index');
Route::any('/w/{id}', 'Peertube\Watch@index');
@ -16,19 +18,23 @@ Route::group(['prefix' => 'peertube'], function () {
Route::any('/my-library', 'Peertube\Mylibrary@index');
Route::group(['prefix' => 'admin'], function () {
Route::any('/', 'Peertube\Admin\Users@index');
Route::any('/users', 'Peertube\Admin\Users@index');
});
Route::group(['prefix' => 'my-library'], function () {
Route::any('/', 'Peertube\Mylibrary\Videochannels@index');
Route::any('/videos', 'Peertube\Mylibrary\Videos@index');
Route::any('/video-playlists', 'Peertube\Mylibrary\Videoplaylists@index');
Route::group(['prefix' => 'history'], function () {
Route::any('/', 'Peertube\Mylibrary\History@index');
Route::any('/videos', 'Peertube\Mylibrary\History\Videos@index');
});
});
Route::group(['prefix' => 'videos'], function () {
Route::any('/', 'Peertube\Videos\Local@index');
Route::any('/subscriptions', 'Peertube\Videos\Subscriptions@index');
Route::any('/overview', 'Peertube\Videos\Overview@index');
Route::any('/trending', 'Peertube\Videos\Trending@index');