Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.55 KB

workshop-designer.md

File metadata and controls

39 lines (25 loc) · 1.55 KB

Build your Resume Website with .NET

Workshop Source

Build your Resume Website, from the .NET Conf Student Zone 2022 Event

Stage 1: Desired Results

You will walk away from this workshop with your very own resume website! This workshop will teach you how to build a Blazor-WASM site to display a resume.

Blazor WASM (or Blazor WebAssembly) is a single-page web application framework built by Microsoft that allows you to build single-page web applications. Built as part of the .NET ecosystem, Blazor uses C# to generate dynamic content for a rich client experience.

  1. Students will be skilled at:
  • Construct a frontend using Blazor
  • Think about their project as a series of components
  • Define a JSON file to represent your resume
  • Integrate the .NET Blazor app and JSON data
  1. Students will be able to independently use their learning to:
  • Apply this architecture to create other powerful websites using Blazor

Stage 2: Evidence

Students will demonstrate their understanding of the concepts with the website they will build during the workshop:

  1. The website is comprised of componenents that represent different parts of their resume
  2. Defined pages that appear in the navigation
  3. The site pulls data from a JSON file

Stage 3: Learning Plan

Learning Objectives

  1. Setup the page navigation
  2. Modelling the resume data with JSON
  3. Fetch the data from our JSON
  4. Render the fetched data
  5. Styling the resume site