diff --git a/src/templates/homepage.pug b/src/templates/homepage.pug index 0413b47..2b9d902 100644 --- a/src/templates/homepage.pug +++ b/src/templates/homepage.pug @@ -46,22 +46,23 @@ mixin featured_projects() .px-3 +card-deck(3)&attributes(attributes) +featured_project_card( - "SPRING", - "The latest Open Movie project.", - "/p/spring", - "{{ url_for('static', filename='assets/img/features/open_movies_spring_03.jpg')}}") + "ANIMATION FUNDAMENTALS", + "Learn the fundamentals to get started with character animation.", + "/p/animation-fundamentals", + "{{ url_for('static', filename='assets/img/features/training_animation_fundamentals_01.jpg')}}") +featured_project_card( - "SPEED SCULPTING", - "Learn how to speed up your sculpts in Blender 2.8", - "/p/speed-sculpting", - "{{ url_for('static', filename='assets/img/features/training_speed_sculpting_03.jpg')}}") + "ANGLERFISH WORKSHOP", + "Follow Andy Goralczyk while he creates this amazing scene from scratch.", + "/p/anglerfish", + "{{ url_for('static', filename='assets/img/features/training_anglerfish_01.jpg')}}") +featured_project_card( - "GREASE PENCIL", - "Master the new 2D animation worflow.", - "/p/grease-pencil-fundamentals", - "{{ url_for('static', filename='assets/img/features/training_grease_pencil_02.jpg')}}") + "STYLIZED CHARACTER WORKSHOP", + "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')}}") + | {% block body %} diff --git a/src/templates/learn.pug b/src/templates/learn.pug index 9f2787f..2fe5dff 100644 --- a/src/templates/learn.pug +++ b/src/templates/learn.pug @@ -27,15 +27,15 @@ include mixins/components 'COURSES', 'In-depth training for mastering every corner in Blender.', "{{ url_for('cloud.courses') }}", - "{{ url_for('static', filename='assets/img/features/training_grease_pencil_02.jpg')}}", - '/p/grease-pencil-fundamentals') + "{{ url_for('static', filename='assets/img/features/training_animation_fundamentals_01.jpg')}}", + '/p/animation-fundamentals') ul.list-unstyled.mt-3.mb-0.column-count-2.list-first-new - var projects = { + 'Animation Fundamentals':'/p/animation-fundamentals', 'Grease Pencil':'/p/grease-pencil-fundamentals', - 'Scripting for Artists':'/p/scripting-for-artists', - 'Motion Graphics':'/p/motion-graphics' + 'Scripting for Artists':'/p/scripting-for-artists' }; each url, title in projects @@ -53,15 +53,15 @@ include mixins/components 'WORKSHOPS', 'Enter the artist workshop and learn by example.', "{{ url_for('cloud.workshops') }}", - "{{ url_for('static', filename='assets/img/features/training_speed_sculpting_03.jpg')}}", - '/p/speed-sculpting/5ca2371a001f6b38e8c0a3af') + "{{ url_for('static', filename='assets/img/features/training_anglerfish_01.jpg')}}", + '/p/anglerfish') ul.list-unstyled.mt-3.mb-0.column-count-2.list-first-new - var projects = { + 'Anglerfish':'/p/anglerfish', 'Speed Sculpting':'/p/speed-sculpting', 'Minecraft Animation':'/p/minecraft-animation-workshop', - 'Low Poly Character Creation':'/p/low-poly-character-creation', }; each url, title in projects diff --git a/static/assets/img/features/training_anglerfish_01.jpg b/static/assets/img/features/training_anglerfish_01.jpg new file mode 100644 index 0000000..718bf0e Binary files /dev/null and b/static/assets/img/features/training_anglerfish_01.jpg differ diff --git a/static/assets/img/features/training_animation_fundamentals_01.jpg b/static/assets/img/features/training_animation_fundamentals_01.jpg new file mode 100644 index 0000000..0631586 Binary files /dev/null and b/static/assets/img/features/training_animation_fundamentals_01.jpg differ diff --git a/static/assets/img/features/training_stylized_character_workshop_01.jpg b/static/assets/img/features/training_stylized_character_workshop_01.jpg new file mode 100644 index 0000000..c81f80b Binary files /dev/null and b/static/assets/img/features/training_stylized_character_workshop_01.jpg differ