Skip to content

Commit

Permalink
🔥 Replace div tag with section
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulloClara committed May 11, 2020
1 parent 069bcf5 commit c60856e
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/pages/About/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<main id="about">
<main id="p-about">
About
</main>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Category/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<main id="category">
<main id="p-category">
{{ $route.params }}
</main>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Help/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<main id="help">
<main id="p-help">
Help
</main>
</template>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Home/section/Funnel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<div class="s-funnel">
<section class="s-funnel">
<c-title>Funil de Produção</c-title>

<div class="content">
Expand All @@ -26,7 +26,7 @@ export default {
<span>Aprovadas</span>
</c-button>
</div>
</div>
</section>
</template>

<style lang="css" scoped>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Home/section/Help.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<div class="s-help">
<section class="s-help">
<c-title>Quer Ajudar?</c-title>

<div class="list">
Expand All @@ -28,7 +28,7 @@ export default {
<span class="title">Narrar Matéria</span>
</c-card>
</div>
</div>
</section>
</template>

<style lang="css" scoped>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Home/section/News.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<div class="s-news">
<section class="s-news">
<c-title>Últimas Notícias Veiculadas</c-title>

<div class="list">
Expand All @@ -27,7 +27,7 @@ export default {
sistema estatal.
</c-card>
</div>
</div>
</section>
</template>

<style lang="css" scoped>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Home/section/Newsletter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default {
</script>

<template lang="html">
<div class="s-newsletter">
<section class="s-newsletter">
<c-title>Newsletter do Canal</c-title>
<span class="subtitle">
Registre seu email na Newsletter para ser avisado de novos vídeos!
Expand All @@ -23,7 +23,7 @@ export default {
<c-form inline>
<c-input type="email" placeholder="[email protected]" lazy></c-input>
</c-form>
</div>
</section>
</template>

<style lang="css" scoped>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Home/section/Numbers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<div class="s-numbers">
<section class="s-numbers">
<c-title>Números</c-title>

<c-social-nav vertical>
Expand All @@ -24,7 +24,7 @@ export default {
<template #twitter>8836 Inscritos</template>
<template #gab>151 Inscritos</template>
</c-social-nav>
</div>
</section>
</template>

<style lang="css" scoped></style>
4 changes: 2 additions & 2 deletions src/pages/Home/section/Videos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ export default {
</script>

<template lang="html">
<div class="s-videos">
<section class="s-videos">
<c-title>Últimos Vídeos do Canal</c-title>
<c-carousel :items="items" :center="false"></c-carousel>
</div>
</section>
</template>

<style lang="css" scoped>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Login/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
</script>

<template lang="html">
<main id="login">
<main id="p-login">
Login
</main>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/NotFound/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
</script>

<template lang="html">
<main id="not-found">
<main id="p-not-found">
Not Found
</main>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Register/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
</script>

<template lang="html">
<main id="register">
<main id="p-register">
Register
</main>
</template>
Expand Down

0 comments on commit c60856e

Please sign in to comment.