Compare commits
2 commits
e541f365ee
...
68018abd6c
Author | SHA1 | Date | |
---|---|---|---|
68018abd6c | |||
baecd6b2fa |
|
@ -21,7 +21,7 @@ description: >- # this means to ignore newlines until "baseurl:"
|
||||||
baseurl: "" # the subpath of your site, e.g. /blog
|
baseurl: "" # the subpath of your site, e.g. /blog
|
||||||
url: "https://ulovliglogning.dk" # the base hostname & protocol for your site, e.g. http://example.com
|
url: "https://ulovliglogning.dk" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
donationCounter:
|
donationCounter:
|
||||||
donated: 186594
|
donated: 186595
|
||||||
goal: 250000
|
goal: 250000
|
||||||
|
|
||||||
# multilanguage support
|
# multilanguage support
|
||||||
|
|
|
@ -24,7 +24,7 @@ if [ -d "$jekyll_dir" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo -e "${success}Build succeded, now uploading to FTP server${normal}"
|
echo -e "${success}Build succeded, now uploading to FTP server${normal}"
|
||||||
lftp -u ${remote_username},${remote_password} -e "mirror -R -p -P=10 --ignore-time -v ${jekyll_dir}/_site/ ${remote_dir};quit" ftp://${remote_host}
|
lftp -u ${remote_username},${remote_password} -e "mirror -R -p -P=10 --only-newer -v ${jekyll_dir}/_site/ ${remote_dir};quit" ftp://${remote_host}
|
||||||
if [[ $? != 0 ]]; then
|
if [[ $? != 0 ]]; then
|
||||||
echo -e "${error}FAILED: Something went wrong trying to upload to the FTP server${normal}"
|
echo -e "${error}FAILED: Something went wrong trying to upload to the FTP server${normal}"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -10,6 +10,7 @@ $donationCounter_percentFromGoal: 100 - ($donationCounter_donated / $donationCou
|
||||||
background-position: 100%;
|
background-position: 100%;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
|
right: 0px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
|
@ -37,6 +37,10 @@ section {
|
||||||
padding-right: 2rem;
|
padding-right: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.paragraphs {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
.heading {
|
.heading {
|
||||||
h1 {
|
h1 {
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
|
|
Loading…
Reference in a new issue