1
0
mirror of https://github.com/balkian/balkian.github.com.git synced 2024-09-28 19:01:42 +00:00

Purge folder before generating

This commit is contained in:
J. Fernando Sánchez 2019-01-11 16:19:29 +01:00
parent 566a103c9a
commit 5b93f7d576
3 changed files with 6 additions and 14 deletions

View File

@ -1,9 +0,0 @@
+++
title = "About"
date = "2017-02-24"
menu = ["main"]
+++
Hi!
My name is Fernando. I'm a researcher and developer from Madrid, Spain.

View File

@ -2,8 +2,10 @@
echo -e "\033[0;32mDeploying updates to GitHub...\033[0m" echo -e "\033[0;32mDeploying updates to GitHub...\033[0m"
rm -rf public/*
# Build the project. # Build the project.
hugo # if using a theme, replace with `hugo -t <YOURTHEME>` hugo # --cleanDestinationDir also removes .git :/ # if using a theme, replace with `hugo -t <YOURTHEME>`
# Go To Public folder # Go To Public folder
cd public cd public

View File

@ -765,10 +765,6 @@ a {
padding: 0.5em; padding: 0.5em;
} }
.navbar li:hover {
border-bottom: solid 2px black;
}
.navbar li { .navbar li {
margin: 0; margin: 0;
@ -778,13 +774,16 @@ a {
.navbar li:hover { .navbar li:hover {
position: relative; position: relative;
margin-bottom: -2px;
color: #000; color: #000;
background-color: #fff; background-color: #fff;
text-shadow: 2px 2px #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff; text-shadow: 2px 2px #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
border-bottom: solid 2px black;
} }
.navbar li.active { .navbar li.active {
border-bottom: solid 2px #C00; border-bottom: solid 2px #C00;
margin-bottom: -2px;
} }
.navbar a:hover { .navbar a:hover {