small changes to layout1 including discord link on irc page, removed transparency linking from footer (was 404 anyways) added favorite shortcut in the navigation on layout1
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 177 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,6 +1,8 @@
|
|||||||
# w0bm.com
|
# w0bm.com
|
||||||

|

|
||||||
|
|
||||||
|
### I don't give support on this software, you are free to do whatever the FUCK you like but don't expect me to help you with php trouble that you are going to encounter unless you know what you are doing, the times are over where you could install this with ease, just saying.
|
||||||
|
|
||||||
[](https://webirc.n0xy.net/?join=%23w0bm)
|
[](https://webirc.n0xy.net/?join=%23w0bm)
|
||||||
[](https://packagist.org/packages/laravel/framework)
|
[](https://packagist.org/packages/laravel/framework)
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<nav class="navbar-fixed-bottom">
|
<nav class="navbar-fixed-bottom">
|
||||||
<div class="container futter">
|
<div class="container futter">
|
||||||
<a href="/about">About</a> | <a href="/rules">Rules</a> | <a href="/contact">Contact</a> | <a href="/privacy">Privacy</a> | <a href="/transparency">Transparency</a> | <a href="/stats">Stats</a>
|
<a href="/about">About</a> | <a href="/rules">Rules</a> | <a href="/contact">Contact</a> | <a href="/privacy">Privacy</a> | <a href="/stats">Stats</a>
|
||||||
<p>Inspired by <a href="http://z0r.de">z0r.de</a> | © 2015 – {{ date('Y') }} w0bm.com</p>
|
<p>Inspired by <a href="http://z0r.de">z0r.de</a> | © 2015 – {{ date('Y') }} w0bm.com</p>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
@@ -17,8 +17,16 @@
|
|||||||
<h6>irc.n0xy.net +6697 (ssl only) #w0bm</h6>
|
<h6>irc.n0xy.net +6697 (ssl only) #w0bm</h6>
|
||||||
<p>Don't have a desktop client? Why not join our Network via webirc? <a href="https://webirc.n0xy.net/?join=%23w0bm" target="about_blank">>>webirc.n0xy.net</a></p>
|
<p>Don't have a desktop client? Why not join our Network via webirc? <a href="https://webirc.n0xy.net/?join=%23w0bm" target="about_blank">>>webirc.n0xy.net</a></p>
|
||||||
<p>More information: <a href="https://n0xy.net">n0xy.net</a></p>
|
<p>More information: <a href="https://n0xy.net">n0xy.net</a></p>
|
||||||
<p>Come to funni vidios discord servar ;) <a href="https://discord.gg/R7Ah4td">discord</a></p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="page-header">
|
||||||
|
<h3>Discord</h3>
|
||||||
|
</div>
|
||||||
|
<p>Hello there! Join our Discord and have a nice chat with us!</p>
|
||||||
|
<p>w0bm <a href="/rules">rules</a> apply on the discord aswell also the server language is english.</p>
|
||||||
|
<iframe src="https://discordapp.com/widget?id=743079555379626006&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
|
||||||
|
|
||||||
|
@include('footer')
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
@@ -10,7 +10,6 @@
|
|||||||
@if(Auth::check())
|
@if(Auth::check())
|
||||||
<a class="navbar-brand" href="/main">
|
<a class="navbar-brand" href="/main">
|
||||||
<img src="{{ asset('logo.svg') }}" alt="w0bm.com">
|
<img src="{{ asset('logo.svg') }}" alt="w0bm.com">
|
||||||
<a href="https://discord.gg/R7Ah4td" target="_blank" class="discordo">discordo~</a>
|
|
||||||
</a>
|
</a>
|
||||||
@else
|
@else
|
||||||
<a class="navbar-brand" href="/">
|
<a class="navbar-brand" href="/">
|
||||||
@@ -36,6 +35,7 @@
|
|||||||
<li><a href="{{url('messages')}}"><i class="fa fa-envelope"></i> <span class="badge message-badge">{{Auth::user()->messagesRecv()->unread()->count()}}</span></a></li>
|
<li><a href="{{url('messages')}}"><i class="fa fa-envelope"></i> <span class="badge message-badge">{{Auth::user()->messagesRecv()->unread()->count()}}</span></a></li>
|
||||||
<li><a href="#" data-toggle="modal" data-target="#filterselectmodal"><i class="fa fa-filter"></i> Filter</a></li>
|
<li><a href="#" data-toggle="modal" data-target="#filterselectmodal"><i class="fa fa-filter"></i> Filter</a></li>
|
||||||
<li><a href="{{url('upload')}}"><i class="fa fa-cloud-upload"></i> Upload</a></li>
|
<li><a href="{{url('upload')}}"><i class="fa fa-cloud-upload"></i> Upload</a></li>
|
||||||
|
<li><a href="{{url('user', Auth::user()->username)}}/favs"><i class="fa fa-heart"></i></a></li>
|
||||||
<li><a href="{{url('user', Auth::user()->username)}}"><i class="fa fa-user"></i> {{Auth::user()->username}}</a></li>
|
<li><a href="{{url('user', Auth::user()->username)}}"><i class="fa fa-user"></i> {{Auth::user()->username}}</a></li>
|
||||||
<li><a href="{{url('logout')}}"><i class="fa fa-sign-out"></i> Logout</a></li>
|
<li><a href="{{url('logout')}}"><i class="fa fa-sign-out"></i> Logout</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
<label for="tag-add-toggle">
|
<label for="tag-add-toggle">
|
||||||
<li id="tagadder" class="addtagsy">+ Add Tag <i class="fa fa-tag" aria-hidden="true"></i> </li>
|
<li id="tagadder" class="addtagsy">+ Add Tag <i class="fa fa-tag" aria-hidden="true"></i> </li>
|
||||||
</label>
|
</label>
|
||||||
<li class="addtagsy"><a href="/irc">IRC </a></li>
|
<li class="addtagsy"><a href="/irc">Chat </a></li>
|
||||||
<li class="addtagsy"><a href="/about">About </a></li>
|
<li class="addtagsy"><a href="/about">About </a></li>
|
||||||
<li class="addtagsy"><a href="/contact">Contact </a></li>
|
<li class="addtagsy"><a href="/contact">Contact </a></li>
|
||||||
<li class="addtagsy"><a href="/rules">Rules </a></li>
|
<li class="addtagsy"><a href="/rules">Rules </a></li>
|
||||||
@@ -21,7 +21,7 @@
|
|||||||
</div>
|
</div>
|
||||||
@else
|
@else
|
||||||
<ul class="nav navbar-nav info-nav">
|
<ul class="nav navbar-nav info-nav">
|
||||||
<li class="addtagsy"><a href="/irc">IRC </a></li>
|
<li class="addtagsy"><a href="/irc">Chat </a></li>
|
||||||
<li class="addtagsy"><a href="/about">About </a></li>
|
<li class="addtagsy"><a href="/about">About </a></li>
|
||||||
<li class="addtagsy"><a href="/contact">Contact </a></li>
|
<li class="addtagsy"><a href="/contact">Contact </a></li>
|
||||||
<li class="addtagsy"><a href="/rules">Rules </a></li>
|
<li class="addtagsy"><a href="/rules">Rules </a></li>
|
||||||
@@ -40,7 +40,7 @@
|
|||||||
No tags yet ...
|
No tags yet ...
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<span id="w0bm_version">v.1.{{ filemtime("css/w0bmcustom.css") }} // 2020 <a style="opacity: 1;" href="https://discord.gg/R7Ah4td">ツdiscordo~</a></span>
|
<span id="w0bm_version">v.1.{{ filemtime("css/w0bmcustom.css") }} // 2020</span>
|
||||||
<br>
|
<br>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user