Update season number to 11, and move trade deadline to week 13 on schedule view
This commit is contained in:
parent
b7e78aa8bc
commit
dff053fa77
@ -5,13 +5,13 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="icon" href="/favicon.ico">
|
<link rel="icon" href="/favicon.ico">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
||||||
<meta property="og:title" content="SBa Season 10" />
|
<meta property="og:title" content="SBa Season 11" />
|
||||||
<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 10</title>
|
<title>SBa Season 11</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@ -4,7 +4,7 @@ dayjs.extend(customParseFormat)
|
|||||||
|
|
||||||
export const SITE_URL = 'https://sba.manticorum.com'
|
export const SITE_URL = 'https://sba.manticorum.com'
|
||||||
|
|
||||||
export const CURRENT_SEASON = 10
|
export const CURRENT_SEASON = 11
|
||||||
|
|
||||||
export const MODERN_STAT_ERA_START = 8
|
export const MODERN_STAT_ERA_START = 8
|
||||||
|
|
||||||
|
|||||||
@ -2,12 +2,12 @@
|
|||||||
<div class="rules-view centerDiv">
|
<div class="rules-view centerDiv">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<h1>Season 10 Rules and Guidelines</h1>
|
<h1>Season {{ CURRENT_SEASON }} Rules and Guidelines</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
<h2>Season 10 Rules Reference</h2>
|
<h2>Season {{ CURRENT_SEASON }} Rules Reference</h2>
|
||||||
<a target="_blank" href="https://docs.google.com/document/d/1bY3vWcoFRh8noOE_QdSMLXrqbG4tgn7jdCCNq0uoLYU">
|
<a target="_blank" href="https://docs.google.com/document/d/1bY3vWcoFRh8noOE_QdSMLXrqbG4tgn7jdCCNq0uoLYU">
|
||||||
View in Google Docs
|
View in Google Docs
|
||||||
</a>
|
</a>
|
||||||
@ -27,7 +27,14 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
import { CURRENT_SEASON } from '@/services/utilities'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'RulesView',
|
name: 'RulesView',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
CURRENT_SEASON
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -225,7 +225,7 @@ export default {
|
|||||||
weekSpecialInfo(weekNumber: number): string {
|
weekSpecialInfo(weekNumber: number): string {
|
||||||
if (weekNumber === 1) return 'Spring Begins'
|
if (weekNumber === 1) return 'Spring Begins'
|
||||||
if (weekNumber === 6) return 'Summer Begins'
|
if (weekNumber === 6) return 'Summer Begins'
|
||||||
if (weekNumber === 14) return 'Trade Deadline'
|
if (weekNumber === 13) return 'Trade Deadline'
|
||||||
if (weekNumber === 15) return 'Fall Begins'
|
if (weekNumber === 15) return 'Fall Begins'
|
||||||
if (weekNumber === 18) return 'Regular Season Ends'
|
if (weekNumber === 18) return 'Regular Season Ends'
|
||||||
if (weekNumber === 19) return 'Division Series - Best of 5'
|
if (weekNumber === 19) return 'Division Series - Best of 5'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user