From dabc8e118740ff2c2230e9bf1cd626512e2edaca Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 12 Jul 2018 18:56:18 +0100 Subject: [PATCH] Install images for index page Signed-off-by: Michael Tremer --- Makefile.am | 6 ++++-- src/scss/style.scss | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4e4c1140..79635b23 100644 --- a/Makefile.am +++ b/Makefile.am @@ -147,9 +147,11 @@ static_fonts_DATA = \ static_fontsdir = $(staticdir)/fonts static_images_DATA = \ - # TODO + src/static/img/appliance-pro.png \ + src/static/img/header-background.jpg \ + src/static/img/ipfire-tux.png -static_imagesdir = $(staticdir)/images +static_imagesdir = $(staticdir)/img static_js_DATA = \ # TODO diff --git a/src/scss/style.scss b/src/scss/style.scss index c2be497b..0bcb06e2 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -135,7 +135,7 @@ footer { // Sections section.intro { min-height: 100vh; - background-image: url('../img/header-background.jpg'); + background-image: url('img/header-background.jpg'); background-size: cover; background-attachment: fixed; background-position: center top; @@ -164,7 +164,7 @@ section.intro { content: ""; height: 60px; width: 76px; - background-image: url('../img/ipfire-tux.png'); + background-image: url('img/ipfire-tux.png'); background-repeat: no-repeat; background-position: center center; background-size: contain; -- 2.47.3