mise a jour CV
This commit is contained in:
parent
c47a1cd619
commit
a6dd3c53e4
36
build.sh
Executable file
36
build.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#!/bin/bash
|
||||
while [ -n "$1" ]; do # gestion des paramètres
|
||||
case "$1" in
|
||||
-h) echo "Script qui transforme des fichiers markdown en pdf et html avec le même style.
|
||||
-k conserve les fichiers de construction"; exit 0;;
|
||||
-k) keep=true;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
set -xe
|
||||
IN_DIR="./input-cv-md"
|
||||
OUT_DIR="./output"
|
||||
STYLES_DIR="styles"
|
||||
STYLE="aou"
|
||||
|
||||
mkdir -p $IN_DIR
|
||||
mkdir -p $OUT_DIR
|
||||
|
||||
for f in $IN_DIR/*.md; do
|
||||
FILE_NAME=`basename $f | sed 's/.md//g'`;
|
||||
# Génère le HTML
|
||||
pandoc --standalone --css ../$STYLES_DIR/$STYLE.css \
|
||||
--from markdown --to html \
|
||||
--output $OUT_DIR/$FILE_NAME.html $f \
|
||||
--metadata pagetitle=$FILE_NAME;
|
||||
# Génère le PDF
|
||||
pandoc --standalone --template $STYLES_DIR/$STYLE.tex \
|
||||
--from markdown --to context --variable papersize=A4 \
|
||||
--output $OUT_DIR/$FILE_NAME.tex $f;
|
||||
mtxrun --path=$OUT_DIR --result=$FILE_NAME.pdf --script context $FILE_NAME.tex;
|
||||
done
|
||||
|
||||
if [ -z "$keep" ] ; then
|
||||
rm -rf $OUT_DIR/*.log $OUT_DIR/*.tex $OUT_DIR/*.tuc styles/*.pdf;
|
||||
fi
|
56
input-cv-md/antoine.md
Normal file
56
input-cv-md/antoine.md
Normal file
@ -0,0 +1,56 @@
|
||||
---
|
||||
header-includes:
|
||||
<meta name="robots" content="noindex,nofollow"/>
|
||||
---
|
||||
|
||||
Antoine Ouvrard
|
||||
===============
|
||||
Développeur Devops
|
||||
------------------
|
||||
|
||||
### Expérience
|
||||
|
||||
depuis 2014
|
||||
: **Conception & Développement sur des projets ERP ApacheOFBiz®**
|
||||
*SCOP Néréide - Tours (37) - CDI*
|
||||
• **Vie coopérative** (gestion communautaire d'une société, prise de décision en groupe, hiérarchie plate, organisation transparente, ...)
|
||||
• **Analyse** des besoins client, **développement** applicatif, **test et intégration** pour plusieurs clients (Grand comptes et PME)
|
||||
• **TMA** - Tierce Maintenance Applicative
|
||||
• **DevOps** - Mise en place et maintenance de script de déploiement automatisé
|
||||
• **Administrateur Système** - Gestion d'un parc de serveurs via Ansible, Mise en place de supervision, Maintenance de machines
|
||||
|
||||
2012 à 2014
|
||||
: **Fondateur d'une association informatique et solidaire**
|
||||
*CALIS https://www.calis-asso.org/ - Cholet (49) - Bénévolat*
|
||||
• **Rencontre d'acteurs** politiques, associatifs, collectivitées - Recherche de subventions
|
||||
• Animation d'atelier de **formation** - Promotion du logiciel libre
|
||||
• Recherche et mise en place d'un **système GNU/Linux** personnalisé - Clonnage de PC
|
||||
|
||||
2011 à 2012
|
||||
: **Conception & Développement en SSI**
|
||||
*Cat-Amania - Nantes (44) - CDI*
|
||||
• Développement (JEE, JSP, Maven, Sonar) pour des Banques, Assurances et DGFIP
|
||||
|
||||
### Compétences
|
||||
|
||||
Systèmes
|
||||
: GNU/Linux - Serveur Web - Git - Gitlab/CI - Ansible - Grafana - Jenkins - Postgres
|
||||
|
||||
Language
|
||||
: Java - XML - HTML - Groovy - YAML
|
||||
|
||||
### Formation
|
||||
|
||||
2010
|
||||
: **Licence Professionnelle Informatique** Systèmes d'informations Intégration et Maintenance Applicative - Vannes (56)
|
||||
|
||||
2009
|
||||
: **BTS Informatique de Gestion** option Développeur d'Applications - Nantes (44)
|
||||
|
||||
2006
|
||||
: **BAC STI** option Génie Électronique - La Roche/Yon (85)
|
||||
|
||||
---
|
||||
|
||||
cv@aouvrard.fr
|
||||
37700 Saint-Pierre des Corps
|
75
output/antoine.html
Normal file
75
output/antoine.html
Normal file
@ -0,0 +1,75 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="generator" content="pandoc" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||
<title>antoine</title>
|
||||
<style>
|
||||
code{white-space: pre-wrap;}
|
||||
span.smallcaps{font-variant: small-caps;}
|
||||
span.underline{text-decoration: underline;}
|
||||
div.column{display: inline-block; vertical-align: top; width: 50%;}
|
||||
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||
ul.task-list{list-style: none;}
|
||||
.display.math{display: block; text-align: center; margin: 0.5rem auto;}
|
||||
</style>
|
||||
<link rel="stylesheet" href="../styles/aou.css" />
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
|
||||
<![endif]-->
|
||||
<meta name="robots" content="noindex,nofollow"/>
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="antoine-ouvrard">Antoine Ouvrard</h1>
|
||||
<h2 id="développeur-devops">Développeur Devops</h2>
|
||||
<h3 id="expérience">Expérience</h3>
|
||||
<dl>
|
||||
<dt>depuis 2014</dt>
|
||||
<dd><strong>Conception & Développement sur des projets ERP ApacheOFBiz®</strong><br />
|
||||
<em>SCOP Néréide - Tours (37) - CDI</em><br />
|
||||
• <strong>Vie coopérative</strong> (gestion communautaire d’une société, prise de décision en groupe, hiérarchie plate, organisation transparente, …)<br />
|
||||
• <strong>Analyse</strong> des besoins client, <strong>développement</strong> applicatif, <strong>test et intégration</strong> pour plusieurs clients (Grand comptes et PME)<br />
|
||||
• <strong>TMA</strong> - Tierce Maintenance Applicative<br />
|
||||
• <strong>DevOps</strong> - Mise en place et maintenance de script de déploiement automatisé<br />
|
||||
• <strong>Administrateur Système</strong> - Gestion d’un parc de serveurs via Ansible, Mise en place de supervision, Maintenance de machines
|
||||
</dd>
|
||||
<dt>2012 à 2014</dt>
|
||||
<dd><strong>Fondateur d’une association informatique et solidaire</strong><br />
|
||||
<em>CALIS https://www.calis-asso.org/ - Cholet (49) - Bénévolat</em><br />
|
||||
• <strong>Rencontre d’acteurs</strong> politiques, associatifs, collectivitées - Recherche de subventions<br />
|
||||
• Animation d’atelier de <strong>formation</strong> - Promotion du logiciel libre<br />
|
||||
• Recherche et mise en place d’un <strong>système GNU/Linux</strong> personnalisé - Clonnage de PC
|
||||
</dd>
|
||||
<dt>2011 à 2012</dt>
|
||||
<dd><strong>Conception & Développement en SSI</strong><br />
|
||||
<em>Cat-Amania - Nantes (44) - CDI</em><br />
|
||||
• Développement (JEE, JSP, Maven, Sonar) pour des Banques, Assurances et DGFIP
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 id="compétences">Compétences</h3>
|
||||
<dl>
|
||||
<dt>Systèmes</dt>
|
||||
<dd>GNU/Linux - Serveur Web - Git - Gitlab/CI - Ansible - Grafana - Jenkins - Postgres
|
||||
</dd>
|
||||
<dt>Language</dt>
|
||||
<dd>Java - XML - HTML - Groovy - YAML
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 id="formation">Formation</h3>
|
||||
<dl>
|
||||
<dt>2010</dt>
|
||||
<dd><strong>Licence Professionnelle Informatique</strong> Systèmes d’informations Intégration et Maintenance Applicative - Vannes (56)
|
||||
</dd>
|
||||
<dt>2009</dt>
|
||||
<dd><strong>BTS Informatique de Gestion</strong> option Développeur d’Applications - Nantes (44)
|
||||
</dd>
|
||||
<dt>2006</dt>
|
||||
<dd><strong>BAC STI</strong> option Génie Électronique - La Roche/Yon (85)
|
||||
</dd>
|
||||
</dl>
|
||||
<hr />
|
||||
<p>cv@aouvrard.fr<br />
|
||||
37700 Saint-Pierre des Corps</p>
|
||||
</body>
|
||||
</html>
|
81
styles/aou.css
Normal file
81
styles/aou.css
Normal file
@ -0,0 +1,81 @@
|
||||
body {
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
background: #333;
|
||||
padding: 0px 0px 70px 0px;
|
||||
color: #c3c3c3;
|
||||
line-height: 30px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 40px;
|
||||
color: #0095d0;
|
||||
text-align: center;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h3 {
|
||||
/* This is called "sectioncolor" in the ConTeXt stylesheet. */
|
||||
color: #00bf18;
|
||||
}
|
||||
/* There is a bar just before each category */
|
||||
h3:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
margin-right:1%;
|
||||
width: 16%;
|
||||
height: 10px;
|
||||
/* This is called "rulecolor" in the ConTeXt stylesheet. */
|
||||
background-color: #00bf18;
|
||||
}
|
||||
|
||||
/* Definitions */
|
||||
dt {
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 17%;
|
||||
font-weight: bold;
|
||||
}
|
||||
dd {
|
||||
margin-left: 17%;
|
||||
margin-bottom:7px;
|
||||
}
|
||||
p {
|
||||
margin-top:0;
|
||||
margin-bottom:7px;
|
||||
}
|
||||
|
||||
/* Blockquotes */
|
||||
blockquote {
|
||||
text-align: center
|
||||
}
|
||||
|
||||
/* Links */
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #0095d0;
|
||||
}
|
||||
a:hover, a:active {
|
||||
background-color: #397249;
|
||||
color: #FFFFFF;
|
||||
text-decoration: none;
|
||||
text-shadow: 1px 1px 1px #333;
|
||||
}
|
||||
|
||||
/* Horizontal separators */
|
||||
hr {
|
||||
color: #A6A6A6;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
92
styles/aou.tex
Normal file
92
styles/aou.tex
Normal file
@ -0,0 +1,92 @@
|
||||
% Copyright 2013 Christophe-Marie Duquesne <chmd@chmd.fr>
|
||||
% Copyright 2014 Mark Szepieniec <http://github.com/mszep>
|
||||
%
|
||||
% ConText style for making a resume with pandoc. Inspired by moderncv.
|
||||
%
|
||||
% This CSS document is delivered to you under the CC BY-SA 3.0 License.
|
||||
% https://creativecommons.org/licenses/by-sa/3.0/deed.en_US
|
||||
|
||||
\startmode[*mkii]
|
||||
\enableregime[utf-8]
|
||||
\setupcolors[state=start]
|
||||
\stopmode
|
||||
$if(mainlang)$
|
||||
\mainlanguage[$mainlang$]
|
||||
$endif$
|
||||
|
||||
\setupcolor[hex]
|
||||
\definecolor[couleurTitre1][h=0095d0]
|
||||
\definecolor[couleurTitre2][h=555555]
|
||||
\definecolor[couleurTitre3][h=00C0CD]
|
||||
\definecolor[couleurDuTrait][h=00C0CD]
|
||||
\definecolor[couleurTxtBlocDroit][h=555555]
|
||||
|
||||
% Enable hyperlinks
|
||||
\setupinteraction[state=start, color=couleurTitre2]
|
||||
|
||||
\setuppapersize [$if(papersize)$$papersize$$else$letter$endif$][$if(papersize)$$papersize$$else$letter$endif$]
|
||||
\setuplayout [width=middle, height=middle,
|
||||
backspace=20mm, cutspace=0mm,
|
||||
topspace=0mm, bottomspace=10mm,
|
||||
header=0mm, footer=0mm]
|
||||
|
||||
\setupbodyfont[11pt, helvetica]
|
||||
|
||||
\setupwhitespace[medium]
|
||||
|
||||
\setupblackrules[width=31mm, color=couleurDuTrait]
|
||||
|
||||
\setuphead[chapter] [style=\tfd]
|
||||
\setuphead[section] [style=\tfd\bf, color=couleurTitre1, align=middle]
|
||||
\setuphead[subsection] [style=\tfa\bf, color=couleurTitre2, align=middle]
|
||||
\setuphead[subsubsection][style=\tfb\bf, color=couleurTitre3, align=right,
|
||||
before={\leavevmode\blackrule\hspace}]
|
||||
|
||||
$if(number-sections)$
|
||||
$else$
|
||||
\setuphead[chapter, section, subsection, subsubsection][number=no]
|
||||
$endif$
|
||||
|
||||
\definedescription[blocText][
|
||||
headstyle=bold,
|
||||
style=normal,
|
||||
color=couleurTxtBlocDroit,
|
||||
location=hanging,
|
||||
width=18mm,
|
||||
distance=14mm,
|
||||
margin=0cm
|
||||
]
|
||||
|
||||
\setupitemize[autointro, packed] % prevent orphan list intro
|
||||
\setupitemize[indentnext=no]
|
||||
|
||||
\setupfloat[figure][default={here,nonumber}]
|
||||
\setupfloat[table][default={here,nonumber}]
|
||||
|
||||
\setuptables[textwidth=max, HL=none]
|
||||
\setupxtable[frame=off,option={stretch,width}]
|
||||
|
||||
\setupthinrules[width=15em] % width of horizontal rules
|
||||
|
||||
\setupdelimitedtext
|
||||
[blockquote]
|
||||
[before={\setupalign[middle]},
|
||||
indentnext=no,
|
||||
]
|
||||
|
||||
$for(header-includes)$
|
||||
$header-includes$
|
||||
$endfor$
|
||||
|
||||
\starttext
|
||||
|
||||
$for(include-before)$
|
||||
$include-before$
|
||||
$endfor$
|
||||
|
||||
$body$
|
||||
|
||||
$for(include-after)$
|
||||
$include-after$
|
||||
$endfor$
|
||||
\stoptext
|
Loading…
x
Reference in New Issue
Block a user