1
 2 // This is the template for how the project pages are organised
 3 // Encapsulation, Inheritance, Polymorphism, Abstraction :)
 4 // -------------------------------------------------------------------------------------------------------------------------------------------
 5
 6 abstract class Project {
 7
 8    name: -name_of_the_project-
 9    desc: -short project description-
10    tools: -tools and technologies used-
11    github_link: -link to github repo of the project-
12
13 }
14
15