diff --git a/src/styles/_homepage.sass b/src/styles/_homepage.sass index 9466712..dcf2721 100644 --- a/src/styles/_homepage.sass +++ b/src/styles/_homepage.sass @@ -40,6 +40,11 @@ margin-left: 0 margin-right: auto +.featured-projects + +media-sm + padding-left: $spacer + padding-right: $spacer + .featured-project-card +media-xl .card-thumbnail diff --git a/src/templates/homepage.pug b/src/templates/homepage.pug index b546dc7..9f45920 100644 --- a/src/templates/homepage.pug +++ b/src/templates/homepage.pug @@ -43,25 +43,25 @@ mixin featured_projects() h6.title-underline | Featured Projects - .px-3 + .featured-projects +card-deck(3)&attributes(attributes) +featured_project_card( - "SETTLERS", - "The Blender Studio team creates and shares a set of brand new characters, free for all!", - "/p/settlers", - "{{ url_for('static', filename='assets/img/features/settlers_01.jpg')}}") + "MASTER SHADING NODES", + "Dive into a sea of nodes with this training by Simon Thommes.", + "/p/procedural-shading", + "{{ url_for('static', filename='assets/img/features/training_procedural_shading_01.jpg')}}") + + +featured_project_card( + "IMPROVE YOUR RIGS", + "The ultimate guide to learn about this crucial step while rigging.", + "/p/weight-painting", + "{{ url_for('static', filename='assets/img/features/training_weight_painting_01.jpg')}}") +featured_project_card( "COFFEE RUN", "This 2d-scroller-inspired short film will take you on the journey of a lifetime.", "/p/coffee-run", - "{{ url_for('static', filename='assets/img/features/coffee_run_01.jpg')}}") - - +featured_project_card( - "STYLIZED CHARACTER WORKFLOW", - "A detailed guide on how to create a stylized character for film production.", - "/p/stylized-character-workflow", - "{{ url_for('static', filename='assets/img/features/training_stylized_character_workshop_01.jpg')}}") + "{{ url_for('static', filename='assets/img/features/coffee_run_02.jpg')}}") diff --git a/static/assets/img/features/coffee_run_02.jpg b/static/assets/img/features/coffee_run_02.jpg new file mode 100644 index 0000000..0534d0b Binary files /dev/null and b/static/assets/img/features/coffee_run_02.jpg differ diff --git a/static/assets/img/features/training_procedural_shading_01.jpg b/static/assets/img/features/training_procedural_shading_01.jpg new file mode 100644 index 0000000..880819f Binary files /dev/null and b/static/assets/img/features/training_procedural_shading_01.jpg differ diff --git a/static/assets/img/features/training_weight_painting_01.jpg b/static/assets/img/features/training_weight_painting_01.jpg new file mode 100644 index 0000000..30759f9 Binary files /dev/null and b/static/assets/img/features/training_weight_painting_01.jpg differ