diff --git a/portfolio/templates/home.html b/portfolio/templates/home.html new file mode 100644 index 0000000000000000000000000000000000000000..867cde6644e9f88fb6c90d049b9a6e3d1f01498c --- /dev/null +++ b/portfolio/templates/home.html @@ -0,0 +1,44 @@ +{% extends 'layout.html' %} + +{% block title %}About{% endblock %} + +{% block content %} +<div class="container"> + <div class="row"> + <div class="col-md-12"> + <h1 class="text-center my-4">About Me</h1> + <p class="text-center">I’m Ariel Lau and I’m passionate about empowering businesses through digital transformation and data analytics. + I have two years of experiences as a market researcher and I am skilled in curating the best tech solutions to my clients. + I am from Hong Kong and in the process of completing my master’s degree in Computing and IT Management at Cardiff University and relocating permanently to the UK. + </p> + </div> + </div> + <div class="row"> + <div class="col-md-12"> + <h3 class="text-center my-4">Interests and Research Areas</h3> + <ul class="list-group list-group-flush text-center"> + <li class="list-group-item">Human Centric Computing</li> + <li class="list-group-item">Data Analytics and Visualisation</li> + <li class="list-group-item">Digital Marketing</li> + <li class="list-group-item">Social Media Management</li> + <li class="list-group-item">Videogame Development</li> + </ul> + </div> + </div> + <div class="row"> + <div class="col-md-12"> + <h3 class="text-center my-4">You can find me on:</h3> + <ul class="list-group list-group-flush text-center"> + <li class="list-group-item"> + <a href="https://medium.com/@ariel7lau" class="btn btn-primary btn-sm">My Medium Blog</a> + </li> + <li class="list-group-item"> + <a href="https://www.linkedin.com/in/ariel-yt-lau/" class="btn btn-primary btn-sm">My LinkedIn Profile</a> + </li> + <li class="list-group-item"> + <a href="https://github.com/ariel7lau/" class="btn btn-primary btn-sm">My GitHub</a> + </li> + </ul> + </div> + </div> + {% endblock content %} \ No newline at end of file