-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.tex.jinja2
130 lines (94 loc) · 4.64 KB
/
template.tex.jinja2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
%----------------------------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------
\documentclass[9pt]{extarticle} % Default font size of 9pt
\title{Kristoffer David Knigga}
\author{Kristoffer Knigga}
\input{structure.tex} % Include the file specifying the document structure and custom commands
%----------------------------------------------------------------------------------------
\begin{document}
\updated{((( today | date_fmt('%B %d, %Y') )))} % The updated date to appear in the footer
%----------------------------------------------------------------------------------------
% HEADER
%----------------------------------------------------------------------------------------
\invisiblesection{Kristoffer David Knigga}
\resumename{Kristoffer David Knigga}
3414 Parkside Drive, Woodridge, IL 60517 \hfill --- \hfill c. \href{tel:765-357-4735}{765-357-4735} \hfill --- \hfill e. \href{mailto:[email protected]}{[email protected]}
%----------------------------------------------------------------------------------------
% TECHNICAL EXPOSURE
%----------------------------------------------------------------------------------------
\section{Technical Exposure}
\textit{Hardware}: ((* for item in hardware if not (condensed and item.condensed) *))((( item.name )))((* if not loop.last *)); ((* endif *))((* endfor *))
\bigskip
\textit{Operating Systems}: ((* for item in operating_systems if not (condensed and item.condensed) *))((( item.name )))((* if not loop.last *)); ((* endif *))((* endfor *))
\bigskip
\textit{Applications}: ((* for item in applications if not (condensed and item.condensed) *))((( item.name )))((* if not loop.last *)); ((* endif *))((* endfor *))
\bigskip
\textit{Public Cloud}: ((* for item in cloud if not (condensed and item.condensed) *))((( item.name )))((* if not loop.last *)); ((* endif *))((* endfor *))
\bigskip
\textit{Programming / Scripting}: ((* for item in programming if not (condensed and item.condensed) *))((( item.name )))((* if not loop.last *)); ((* endif *))((* endfor *))
%----------------------------------------------------------------------------------------
% EXPERIENCE
%----------------------------------------------------------------------------------------
\section{Experience}
((* for employer in experience if not (condensed and employer.condensed) *))
\begin{minipage}[c]{\textwidth}
((( employer.name ))) \hfill ((( employer.city_st )))
\begin{indented}
((* for job in employer.positions if not (condensed and job.condensed) *))
((* for daterange in job.dates *))
((* if loop.first *))
\jobtitle{(((job.title )))} \hfill ((( daterange.start_date | date_fmt ))) -- ((* if daterange.end_date > today *))Present((* else *))((( daterange.end_date | date_fmt )))((* endif *))\\
((* else *))
\tab \hfill ((( daterange.start_date | date_fmt ))) -- ((( daterange.end_date | date_fmt )))\\
((* endif *))
((* endfor *))
((* if job.summary is not none *))
\textit{((( job.summary )))}
((* endif *))
((* if job.highlights is not none*))
((* for highlight in job.highlights if not (condensed and highlight.condensed) *))
((* if loop.first *))
\begin{itemize}
((* endif *))
\item ((( highlight.text )))
((* if loop.last *))
\end{itemize}
((* endif *))
((* endfor *))
((* endif *))
((* if loop.length > 1 and not loop.last *))
\medskip
((* endif *))
((* endfor *))
\end{indented}
\end{minipage}
((* if not loop.last *))
\bigskip
((* endif *))
((* endfor *))
%----------------------------------------------------------------------------------------
% CERTIFICATIONS, CLEARANCES AND CLASSES
%----------------------------------------------------------------------------------------
\section{Certifications, Clearances, and Classes}
\begin{indented}
\begin{itemize}
((* for course in courses if not (condensed and course.condensed)*))
\item ((( course.name ))) -- ((( course.date | date_fmt )))
((* endfor *))
\end{itemize}
\end{indented}
%----------------------------------------------------------------------------------------
% EDUCATION
%----------------------------------------------------------------------------------------
\section{Education}
((* for degree in education if not (condensed and degree.condensed) *))
((( degree.college ))) \tab ((( degree.city_st ))) \hfill ((( degree.dates.start_date | date_fmt ))) -- ((( degree.dates.end_date | date_fmt )))\\
\begin{indented}
Major: ((( degree.major ))) \tabto{8cm} Degree: ((( degree.degree )))
\end{indented}
((* if not loop.last *))
\bigskip
((* endif *))
((* endfor *))
\end{document}