diff --git a/customize.dist/images/ngi.png b/customize.dist/images/ngi.png new file mode 100644 index 000000000..15c6f24fa Binary files /dev/null and b/customize.dist/images/ngi.png differ diff --git a/customize.dist/pages/index.js b/customize.dist/pages/index.js index f1fdfb108..ea5c95ffd 100644 --- a/customize.dist/pages/index.js +++ b/customize.dist/pages/index.js @@ -85,10 +85,18 @@ define([ h('div.row.justify-content-sm-center',[ h('div.col-12.col-sm-4.cp-index-block.cp-index-block-host', h('div', [ Pages.setHTML(h('span'), Msg.home_host), - h('img', { - src: "/customize/images/AGPL.png", - title: Msg.home_host_agpl - }) + h('div.cp-img-container', [ + h('img.agpl', { + src: "/customize/images/AGPL.png", + title: Msg.home_host_agpl + }), + h('a.img', { + href:'#' + }, h('img.ngi', { + src: "/customize/images/ngi.png", + title: 'NGI Award winner' + })) + ]) ])), h('div.col-12.col-sm-4.cp-index-block.cp-index-block-product', h('div', [ Msg.home_product diff --git a/customize.dist/src/less2/pages/page-index.less b/customize.dist/src/less2/pages/page-index.less index ad92531c0..8c364a04d 100644 --- a/customize.dist/src/less2/pages/page-index.less +++ b/customize.dist/src/less2/pages/page-index.less @@ -216,12 +216,18 @@ flex-flow: column; justify-content: space-evenly; } - img { + .cp-img-container { + display: flex; + } + img, a.img { margin: auto; - max-width: 70%; background: white; - max-height: 50px; - margin-top: 1em; + &.agpl { + max-height: 50px; + } + &.ngi { + max-height: 100px; + } } }