Split skills into programming and technologies
This commit is contained in:
parent
4b34c802a1
commit
460aeac279
Binary file not shown.
|
@ -19,12 +19,15 @@ education:
|
|||
institute: Universidad de Granada
|
||||
city: Ceuta
|
||||
|
||||
skills:
|
||||
programming:
|
||||
- C++
|
||||
- Java
|
||||
- UNIX
|
||||
|
||||
technologies:
|
||||
- UNIX (FreeBSD, Linux)
|
||||
- \LaTeX
|
||||
- Git
|
||||
- LEMP/FEMP Web Stack
|
||||
|
||||
languages:
|
||||
- language: Español
|
||||
|
|
20
template.tex
20
template.tex
|
@ -59,6 +59,10 @@ $endif$
|
|||
%--------------------------------
|
||||
\usepackage{graphicx}
|
||||
|
||||
% SIDE BLOCK
|
||||
%--------------------------------
|
||||
|
||||
|
||||
% PDF SETUP
|
||||
%--------------------------------
|
||||
\usepackage{hyperref}
|
||||
|
@ -109,15 +113,23 @@ $if(intro)$
|
|||
$intro$
|
||||
$endif$
|
||||
|
||||
\section*{Aptitudes Informáticas}
|
||||
$if(skills)$
|
||||
\section*{Lenguajes de Programación}
|
||||
$if(programming)$
|
||||
\begin{itemize}
|
||||
$for(skills)$
|
||||
\item $skills$
|
||||
$for(programming)$
|
||||
\item $programming$
|
||||
$endfor$
|
||||
\end{itemize}
|
||||
$endif$
|
||||
|
||||
\section*{Software}
|
||||
$if(technologies)$
|
||||
\begin{itemize}
|
||||
$for(technologies)$
|
||||
\item $technologies$
|
||||
$endfor$
|
||||
\end{itemize}
|
||||
$endif$
|
||||
% \vfill
|
||||
|
||||
\vspace{25pt}
|
||||
|
|
Loading…
Reference in New Issue