← Back to Blog

Walking the walk with Web Development

eleventy web-development github azure

Insert some python code:

# personal_website.py
class PersonalWebsite:
    def __init__(self, owner, technologies):
        self.owner = owner
        self.technologies = technologies
    def display_info(self):
        print(f"{self.owner}'s Personal Website built with: {', '.join(self.technologies)}")
website = PersonalWebsite("Maciej Dzierzanowski", ["Eleventy", "Nunjucks", "CSS", "GitHub Pages", "Azure"])
website.display_info()

Contact