diff --git a/.gitignore b/.gitignore index 7ab39d3..bfb828e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules public data/ghost-dev.db +*.zip diff --git a/package.json b/package.json index d09d9a1..7f6f3b2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lesaca", - "version": "0.1.0", + "version": "0.1.1", "description": "A Ghost theme for my portfolio", "main": "index.js", "author": "Dexter Lesaca", diff --git a/src/default.hbs b/src/default.hbs index d3fe5e3..62d59db 100644 --- a/src/default.hbs +++ b/src/default.hbs @@ -32,7 +32,14 @@ {{navigation}} {{{body}}} - + {{ghost_foot}} diff --git a/src/scss/app.scss b/src/scss/app.scss index b7706ad..eeb526f 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -17,5 +17,6 @@ @import 'components/navigation'; @import 'components/header'; +@import 'components/footer'; @import 'components/block'; @import 'components/tile'; diff --git a/src/scss/components/_block.scss b/src/scss/components/_block.scss index 2ab29f4..d130368 100644 --- a/src/scss/components/_block.scss +++ b/src/scss/components/_block.scss @@ -68,6 +68,7 @@ .showcase { // background-color: gray; // padding: 0 2em; + align-items: start; img { border: 1px solid rgba(0,0,0,0.09); box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1); diff --git a/src/scss/components/_footer.scss b/src/scss/components/_footer.scss new file mode 100644 index 0000000..758866b --- /dev/null +++ b/src/scss/components/_footer.scss @@ -0,0 +1,14 @@ +.site-footer { + background-color: $color-site-black; + text-align: center; + padding: 3em; + .contact-list { + li { + display: inline; + margin-right: 1em; + } + } + a { + color: $color-site-white; + } +}