Skip to content

Commit

Permalink
Change wording on home > characters to "My Characters" for clarity/to…
Browse files Browse the repository at this point in the history
… further distinguish it from profile > characters/to match the home menu in the navbar, and edit the home sidebar to match. Likewise for MYO slots.
  • Loading branch information
itinerare committed May 23, 2020
1 parent 41bdd71 commit 1b9849b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions resources/views/home/_sidebar.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<li class="sidebar-header"><a href="{{ url('/') }}" class="card-link">Home</a></li>
<li class="sidebar-section">
<div class="sidebar-section-header">Inventory</div>
<div class="sidebar-item"><a href="{{ url('characters') }}" class="{{ set_active('characters') }}">Characters</a></div>
<div class="sidebar-item"><a href="{{ url('characters/myos') }}" class="{{ set_active('characters/myos') }}">MYO Slots</a></div>
<div class="sidebar-item"><a href="{{ url('characters') }}" class="{{ set_active('characters') }}">My Characters</a></div>
<div class="sidebar-item"><a href="{{ url('characters/myos') }}" class="{{ set_active('characters/myos') }}">My MYO Slots</a></div>
<div class="sidebar-item"><a href="{{ url('inventory') }}" class="{{ set_active('inventory*') }}">Inventory</a></div>
<div class="sidebar-item"><a href="{{ url('bank') }}" class="{{ set_active('bank*') }}">Bank</a></div>
</li>
Expand Down
6 changes: 3 additions & 3 deletions resources/views/home/characters.blade.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
@extends('home.layout')

@section('home-title') Characters @endsection
@section('home-title') My Characters @endsection

@section('home-content')
{!! breadcrumbs(['Characters' => 'characters']) !!}
{!! breadcrumbs(['My Characters' => 'characters']) !!}

<h1>
Characters
My Characters
</h1>

<p>This is a list of characters you own. Drag and drop to rearrange them.</p>
Expand Down
6 changes: 3 additions & 3 deletions resources/views/home/myos.blade.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
@extends('home.layout')

@section('home-title') MYO Slots @endsection
@section('home-title') My MYO Slots @endsection

@section('home-content')
{!! breadcrumbs(['Characters' => 'characters', 'MYO Slots' => 'myos']) !!}
{!! breadcrumbs(['Characters' => 'characters', 'My MYO Slots' => 'myos']) !!}

<h1>
MYO Slots
My MYO Slots
</h1>

<p>This is a list of MYO slots you own - click on a slot to view details about it. MYO slots can be submitted for design approval from their respective pages.</p>
Expand Down

0 comments on commit 1b9849b

Please sign in to comment.