めちゃくちゃ修正でしょ!

このコミットが含まれているのは:
テクニカル諏訪子 2020-06-20 11:45:44 +09:00
コミット c7f49971c3
4個のファイルの変更36行の追加28行の削除

ファイルの表示

@ -24,6 +24,7 @@
"dependencies": {
"bootstrap": "^4.5.0",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"vue": "^2.6.11",
"vue-draggable-resizable": "^2.2.0"
}

ファイルの表示

@ -9,6 +9,12 @@ window._ = require('lodash');
window.Vue = require('vue');
window.axios = require('axios');
try {
window.$ = window.jQuery = require('jquery');
require('bootstrap');
} catch (e) {}
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
Vue.component('appbar', require('./components/appbar.vue').default);

ファイルの表示

@ -50,28 +50,27 @@
<li class="nav-item"><a class="nav-link{{ ($_SERVER['REQUEST_URI'] == '/passman' ? ' active' : '') }}" href="#">パスマン</a></li>
</ul>
<ul class="navbar-nav ml-auto">
@if ($user)
<li class="nav-item dropdown">
<a href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="nav-link dropdown-toggle" id="userdown">
<img src="/{{ $user->profile->avatar }}" height="25px">
<span style="{{ $user->profile->name_style }}">{{ $user->profile->showname }}</span>
</a>
<ul tabindex="-1" class="dropdown-menu dropdown-menu-right" aria-labelledby="userdown">
<li><a role="menuitem" target="_self" href="/profile/{{ $user->id }}" class="dropdown-item">プロファイルの表示</a></li>
<li><a role="menuitem" target="_self" href="/profile/{{ $user->id }}" class="dropdown-item">プロファイルの編集</a></li>
<li><div class="dropdown-divider"></div></li>
<li><a role="menuitem" target="_self" href="/logout" class="dropdown-item">サインアウト</a></li>
</ul>
</li>
@else
<li class="nav-item dropdown">
<a href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="nav-link dropdown-toggle" id="userdown">未入会者</a>
<ul tabindex="-1" class="dropdown-menu dropdown-menu-right" aria-labelledby="userdown">
<li class="nav-item"><a target="_self" href="/login" class="nav-link">サインイン</a></li>
<li class="nav-item"><a target="_self" href="/register" class="nav-link">新規登録</a></li>
</ul>
</li>
@endif
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="userdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
@if ($user)
<img src="/{{ $user->profile->avatar }}" height="25px">
<span style="{{ $user->profile->name_style }}">{{ $user->profile->showname }}</span>
@else
未入会者
@endif
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="userdown">
@if ($user)
<a href="/profile/{{ $user->id }}" class="dropdown-item">プロファイルの表示</a>
<a href="/profile/{{ $user->id }}" class="dropdown-item">プロファイルの編集</a>
<div class="dropdown-divider"></div>
<a href="/logout" class="dropdown-item">サインアウト</a>
@else
<a href="/login" class="dropdown-item">サインイン</a>
<a href="/register" class="dropdown-item">新規登録</a>
@endif
</div>
</li>
</ul>
</div>
</nav>
@ -92,7 +91,7 @@
</div>
<div class="row nomobile">
<div class="col-md" style="padding-bottom: 32px;">
<div class="within">
<div class="within" style="background-color: #31363b;">
<appbar />
</div>
</div>

ファイルの表示

@ -2,12 +2,14 @@
@section('content')
@foreach ($res as $r)
<div class="within {{ ($r->public_status !== 0 ? ' wny' : '') }}">
<div class="bar {{ ($r->public_status !== 0 ? ' bny' : '') }}">
<a href="/blog/{{ $r->slug }}">{{ $r->title }}</a>
<div style="border: 2px solid #3daee9; box-shadow: 0px 0px 7px 3px #1d99f3; padding: 8px; background-color: #31363b;">
@foreach ($res as $k => $r)
<div class="within {{ ($r->public_status !== 0 ? ' wny' : '') }}" style="margin: {{ ($k == 0 ? 0 : 16) }}px auto {{ ($k == count($res)-1 ? 0 : 16) }}px">
<div class="bar {{ ($r->public_status !== 0 ? ' bny' : '') }}">
<a href="/blog/{{ $r->slug }}">{{ $r->title }}</a>
</div>
</div>
@endforeach
</div>
@endforeach
@endsection