%This is the main file of your document. You specify the type of document here. This file must always include \begin{document} and \end{document}, we import all our packages and options from myOptions.sty and all the actual content from context.tex here. You could potentially do everything in this file, but for organizational purposes what we do here is better.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{myOptions} % always add as LAST package
\title{\LaTeX-template for my dear Coli Friends}
\author{Luuk}
\date{\today}
\begin{document}
\maketitle % make the title, you can make fancier titles if you want (overleaf documentation)
% Include content files:
\input{content.tex}
\end{document}