Clean up and remove title from App.vue
This commit is contained in:
parent
3eac8209dc
commit
47d1ce558b
@ -7,13 +7,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta property="og:title" content="SBa Season 9" />
|
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://sba.manticorum.com" />
|
<meta property="og:url" content="https://sba.manticorum.com" />
|
||||||
<meta property="og:image" content="https://sba.manticorum.com/sba-network.png" />
|
<meta property="og:image" content="https://sba.manticorum.com/sba-network.png" />
|
||||||
<meta property="og:description" content="The home of the Strat-o-matic Baseball Association" />
|
<meta property="og:description" content="The home of the Strat-o-matic Baseball Association" />
|
||||||
<meta name="theme-color" content="#A6CE39">
|
<meta name="theme-color" content="#A6CE39">
|
||||||
<title>SBa Season {{ seasonNumber }}</title>
|
|
||||||
</head>
|
</head>
|
||||||
<NavBar />
|
<NavBar />
|
||||||
|
|
||||||
@ -25,17 +23,11 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { RouterView } from 'vue-router'
|
import { RouterView } from 'vue-router'
|
||||||
import NavBar from './components/NavBar.vue'
|
import NavBar from './components/NavBar.vue'
|
||||||
import { CURRENT_SEASON } from '@/services/utilities'
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
components: {
|
components: {
|
||||||
RouterView,
|
RouterView,
|
||||||
NavBar
|
NavBar
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
seasonNumber: CURRENT_SEASON as number
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -20,10 +20,14 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<img v-if="selectedCardImage1Url" style="width: 100%;" id="card-image" :src="selectedCardImage1Url">
|
<div class="col-sm-auto">
|
||||||
|
<img v-if="selectedCardImage1Url" style="width: 100%;" id="card-image" :src="selectedCardImage1Url">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<img v-if="selectedCardImage2Url" style="width: 100%;" id="card-image-2" :src="selectedCardImage2Url">
|
<div class="col-sm-auto">
|
||||||
|
<img v-if="selectedCardImage2Url" style="width: 100%;" id="card-image-2" :src="selectedCardImage2Url">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -69,18 +69,6 @@
|
|||||||
</ul> -->
|
</ul> -->
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<!-- <nav class="container">
|
|
||||||
<RouterLink to="/">SBa Season {{ seasonNumber }}</RouterLink>
|
|
||||||
<RouterLink to="/schedule">Schedule</RouterLink>
|
|
||||||
<RouterLink to="/standings">Standings</RouterLink>
|
|
||||||
<RouterLink to="/stats">Stats & Leaders</RouterLink>
|
|
||||||
<RouterLink to="/teams">Teams</RouterLink>
|
|
||||||
<RouterLink to="/transactions">Transactions</RouterLink>
|
|
||||||
<RouterLink to="/history">History</RouterLink>
|
|
||||||
<RouterLink to="/rules">Rules Ref</RouterLink>
|
|
||||||
<RouterLink to="/news">News</RouterLink>
|
|
||||||
</nav> -->
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user