This theme is designed for Programmers, Software Engineers and Tech enthusiasts
What You'll Find Here
- Blog: Support for blog, with blog posts and categories
- Portfolio: Support for a portfolio page
- Testimonials: Support for testimonial section and page
- Contact page
- About page
- Gallery page
- About page
Support for highlight code
You can write code directly in the Markdown files and the highlight will be automatically
# If statements
age = 18
if age >= 18:
print("You are an adult")
elif age >= 13:
print("You are a teenager")
else:
print("You are a child")
# Loops
# For loop
for fruit in fruits:
print(fruit)
# While loop
count = 0
while count < 5:
print(count)
count += 1