inicios del FrontEnd
This commit is contained in:
40
APP/components/Layout/ContentFooter.vue
Executable file
40
APP/components/Layout/ContentFooter.vue
Executable file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<footer class="footer">
|
||||
<div class="container-fluid">
|
||||
<ul class="nav">
|
||||
|
||||
<li class="nav-item">
|
||||
<a
|
||||
href="#"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
class="nav-link"
|
||||
>
|
||||
Blog
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="copyright">
|
||||
© {{ year }}, hecho con <i class="tim-icons icon-heart-2"></i> por
|
||||
|
||||
<a
|
||||
href="#"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>mdchaparror</a
|
||||
>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
year: new Date().getFullYear()
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<style></style>
|
||||
Reference in New Issue
Block a user