fixed img bug and replaced images
3
.gitignore
vendored
@ -3,5 +3,4 @@
|
||||
# Local Netlify folder
|
||||
/.netlify
|
||||
/node_modules
|
||||
/static/css
|
||||
/static/images
|
||||
/static/css
|
@ -10,7 +10,7 @@ taxonomies:
|
||||
extra:
|
||||
subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc.
|
||||
author: HANNAH CORDES
|
||||
imgPath: images/sphere-thing.png
|
||||
imgPath: images/ourworld_mycellium.png
|
||||
date: 2018-10-17T14:40:00-05:00
|
||||
---
|
||||
|
||||
|
@ -3,11 +3,9 @@ title: "Careers"
|
||||
description: "NEAR is on a mission to empower everyone to take back control of their money, their data, and their identity. Join us."
|
||||
insert_anchor_links: "left"
|
||||
template: "page.html"
|
||||
extra:
|
||||
imgPath: "/images/careers-hero.jpg"
|
||||
---
|
||||
|
||||
{% row(bgPath="/images/careers-hero.jpg#background") %}
|
||||
{% row(bgPath="/images/bernhard-eisenmann-unsplash.jpg") %}
|
||||
|
||||
# Rebuild the web
|
||||
|
||||
|
BIN
static/images/bernd-dittrich-unsplash.jpg
Normal file
After Width: | Height: | Size: 1.8 MiB |
BIN
static/images/bernhard-eisenmann-unsplash.jpg
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
static/images/careers-hero.jpg
Normal file
After Width: | Height: | Size: 168 KiB |
BIN
static/images/landing_img1.jpg
Normal file
After Width: | Height: | Size: 2.2 MiB |
BIN
static/images/landing_img2.jpg
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
static/images/landing_img3.png
Normal file
After Width: | Height: | Size: 245 KiB |
BIN
static/images/landing_img4.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
static/images/landing_img5.png
Normal file
After Width: | Height: | Size: 183 KiB |
BIN
static/images/landing_img6.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
static/images/ourworld_logo2.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
static/images/ourworld_mycellium.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 190 KiB |
BIN
static/images/tf_icon.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
static/images/tf_logo.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
@ -8,8 +8,8 @@
|
||||
{% set styles = "" %}
|
||||
|
||||
{% if bgPath %}
|
||||
{% set styles = "background: url('" ~ bgPath ~ "')" %}
|
||||
{% set classes = classes ~ " bg-cover lg:py-40" %}
|
||||
{% set styles = "background: url('" ~ bgPath ~ "'); background-size: cover" %}
|
||||
{% set classes = classes ~ " lg:py-40" %}
|
||||
{% endif %}
|
||||
|
||||
<div class="{{classes}}" style="{{styles}}">
|
||||
|