This is a basic for my blog cms. Make with Vue.js.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta name="viewport" content="width=device-width"> | |
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"/> | |
<div id="app"> | |
<center> | |
<!-- Navbar --> | |
<div class="ui secondary pointing menu" id="nav"> | |
<a class="active blue item"> | |
<i class="home icon"></i> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="https://cdn.lineicons.com/1.0.1/LineIcons.min.css"> | |
<div id="app"> | |
<div class="navbar"> | |
<div class="colum"> | |
<div class="home" > | |
<i class="lni-home size-md ":class=" { 'lni-tada-effect' : showHome } " id="home" @click="showHome = !showHome"></i> | |
<h4 v-if="showHome" style="margin-top: 8px; color: #ffff;"> Home </h4> | |
</div> |