From 1e167679f6827c7119d616633b21fffef269cd75 Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 31 Oct 2020 15:24:26 +0100 Subject: Use only HTML and CSS --- templates/icons/code.svg | 1 - templates/icons/external-link.svg | 1 - templates/icons/gitlab.svg | 1 - templates/icons/printer.svg | 1 - templates/icons/user.svg | 1 - templates/layout.html | 34 -------------- templates/layout.tex | 93 --------------------------------------- templates/project.html | 37 ---------------- templates/resume.html | 28 ------------ templates/resume.tex | 18 -------- 10 files changed, 215 deletions(-) delete mode 100644 templates/icons/code.svg delete mode 100644 templates/icons/external-link.svg delete mode 100644 templates/icons/gitlab.svg delete mode 100644 templates/icons/printer.svg delete mode 100644 templates/icons/user.svg delete mode 100644 templates/layout.html delete mode 100644 templates/layout.tex delete mode 100644 templates/project.html delete mode 100644 templates/resume.html delete mode 100644 templates/resume.tex (limited to 'templates') diff --git a/templates/icons/code.svg b/templates/icons/code.svg deleted file mode 100644 index c4954b5..0000000 --- a/templates/icons/code.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/templates/icons/external-link.svg b/templates/icons/external-link.svg deleted file mode 100644 index 6371124..0000000 --- a/templates/icons/external-link.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/templates/icons/gitlab.svg b/templates/icons/gitlab.svg deleted file mode 100644 index 85d54a1..0000000 --- a/templates/icons/gitlab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/templates/icons/printer.svg b/templates/icons/printer.svg deleted file mode 100644 index 8a9a7ac..0000000 --- a/templates/icons/printer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/templates/icons/user.svg b/templates/icons/user.svg deleted file mode 100644 index 7bb5f29..0000000 --- a/templates/icons/user.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/templates/layout.html b/templates/layout.html deleted file mode 100644 index aabe2b8..0000000 --- a/templates/layout.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - Joris Guyonvarch - - - - - - -
- -
$partial("templates/icons/user.svg")$
- CV -
- - -
$partial("templates/icons/code.svg")$
- Projects -
-
- -
- $body$ -
- - - - diff --git a/templates/layout.tex b/templates/layout.tex deleted file mode 100644 index 320dee7..0000000 --- a/templates/layout.tex +++ /dev/null @@ -1,93 +0,0 @@ -\documentclass[a4paper, 11pt]{article} - -\usepackage[hmargin=2.5cm,tmargin=2cm,bmargin=3.5cm,footskip=2cm]{geometry} - -\usepackage{color} -\definecolor{darkblue}{RGB}{0,0,100} - -\usepackage[colorlinks=true, allcolors=darkblue, pdfborder={0 0 0}]{hyperref} - -\usepackage{titlesec} - -\usepackage{graphicx} - -\usepackage{parskip} -\setlength{\parindent}{0em} -\setlength{\parskip}{0.25cm} -\setcounter{secnumdepth}{-1} - -\usepackage[dvipsnames]{xcolor} -\usepackage[inline]{enumitem} -\setlist[itemize]{leftmargin=0.8cm,after=\vspace{0.1cm}} -\renewcommand{\labelitemi}{$$\color{brown}\bullet$$} - -% Other packages - -\usepackage[utf8]{inputenc} -\usepackage[T1]{fontenc} -\usepackage{fp,etoolbox,marvosym,bookman,titlesec,hyperref,tabularx,graphicx,fancyhdr,changepage,lastpage,ulem} -\usepackage{xifthen} - -% Conf - -\setlength{\parindent}{0pt} -\color[HTML]{303030} % Default foreground color -\definecolor{link}{HTML}{505070} -\hypersetup{colorlinks,breaklinks,urlcolor=link,linkcolor=link} -\setlength{\tabcolsep}{0pt} - -\pagestyle{fancy} -\lhead{} -\chead{} -\rhead{} -\renewcommand{\headrulewidth}{0pt} -\cfoot{\thepage\ / \pageref{LastPage}} - -\titleformat - {\section} - {\LARGE\scshape\raggedright\color{brown}} % format - {} % label - {0cm} % sep - {\vspace{0.3cm}} % before - [\titlerule\vspace{0.2cm}] % after - -\titleformat - {\subsection} - {\large\raggedright\bf} % format - {} % label - {0cm} % sep - {\vspace{0.3cm}} % before - [\vspace{0.1cm}] % after - -% Commands - -\providecommand{\tightlist}{% - \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} - -\newcommand{\iconLink}[3] { - \includegraphics[width=8px]{#1} & \href{#2}{\sf\small#3} \\ -} - -% Doc - -\begin{document} - -\begin{minipage}[t]{0.6\textwidth} - \centering - {\Huge Joris Guyonvarch} \\ - \vspace{0.2cm} - {\Large Developer} \\ -\end{minipage} -\begin{minipage}[t]{0.4\textwidth} - \begin{flushright} - \vspace{-1.3em} - \begin{tabular}{p{15pt}l} - \iconLink{external-link.png}{https://guyonvarch.me}{guyonvarch.me} - \iconLink{gitlab.png}{https://gitlab.com/guyonvarch}{guyonvarch} - \end{tabular} - \end{flushright} -\end{minipage} - -$body$ - -\end{document} diff --git a/templates/project.html b/templates/project.html deleted file mode 100644 index 4bcc386..0000000 --- a/templates/project.html +++ /dev/null @@ -1,37 +0,0 @@ -
  • - -

    $name$

    - -
    - - - $partial("templates/icons/gitlab.svg")$ - - $gitlab$ - -
    - -
    - $if(live)$ - - - $partial("templates/icons/external-link.svg")$ - - $live$ - - $endif$ -
    - -
    - $body$ -
    - - $if(skills)$ - - $endif$ - -
  • diff --git a/templates/resume.html b/templates/resume.html deleted file mode 100644 index e848025..0000000 --- a/templates/resume.html +++ /dev/null @@ -1,28 +0,0 @@ -
  • - - $if(name)$ -
    - $name$ -
    - $endif$ - - $if(location)$ -
    - $location$ - $if(time)$ā€“ $time$$endif$ -
    - $endif$ - -
    - $body$ -
    - - $if(skills)$ - - $endif$ - -
  • diff --git a/templates/resume.tex b/templates/resume.tex deleted file mode 100644 index 678e20b..0000000 --- a/templates/resume.tex +++ /dev/null @@ -1,18 +0,0 @@ -$if(name)$ - \subsection{$name$} -$endif$ - -{\color{OliveGreen} $if(location)$ $location$ $endif$ $if(time)$ ā€“ $time$ $endif$} - -$body$ - -$if(skills)$ - \begin{enumerate*}[label={}] - $for(skills)$ - \item{} - \hspace{-0.3cm} - {\color{gray}\uline{\textcolor{black}{$item$}}} - \hspace{0.2cm} - $endfor$ - \end{enumerate*} -$endif$ -- cgit v1.2.3