Clean
This commit is contained in:
parent
40ebb52ca6
commit
e2db45aedf
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 12 KiB |
BIN
build/main.pdf
BIN
build/main.pdf
Binary file not shown.
|
@ -36,7 +36,7 @@
|
||||||
note: [Spécialisation en multimédia et traitement d'images]
|
note: [Spécialisation en multimédia et traitement d'images]
|
||||||
)
|
)
|
||||||
|
|
||||||
#v(0.55cm)
|
#v(0.8cm)
|
||||||
|
|
||||||
= Projets
|
= Projets
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
#v(0.54cm)
|
#v(0.8cm)
|
||||||
|
|
||||||
= Loisirs
|
= Loisirs
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
16 route de Luchon \
|
16 route de Luchon \
|
||||||
31110 Moustajon
|
31110 Moustajon
|
||||||
],
|
],
|
||||||
[ #image("assets/icons/phone.svg", height: 10pt) ], [ 06.71.22.05.84 ],
|
[ #image("assets/icons/phone.svg", height: 10pt) ], [ 05.82.95.91.76 ],
|
||||||
[ #image("assets/icons/mail.svg", height: 10pt) ], [ #link("mailto:thomas@forgione.fr")[thomas\@polymny.studio] ],
|
[ #image("assets/icons/mail.svg", height: 10pt) ], [ #link("mailto:thomas@forgione.fr")[contacter\@polymny.studio] ],
|
||||||
[ #image("assets/icons/world.svg", height: 10pt) ], [ #link("https://tforgione.fr")[https://tforgione.fr] ],
|
[ #image("assets/icons/world.svg", height: 10pt) ], [ #link("https://tforgione.fr")[https://tforgione.fr] ],
|
||||||
[ #image("assets/icons/github.svg", height: 10pt) ], [ #link("https://github.com/tforgione")[\@tforgione] ]
|
[ #image("assets/icons/github.svg", height: 10pt) ], [ #link("https://github.com/tforgione")[\@tforgione] ]
|
||||||
)
|
)
|
||||||
|
|
22
template.typ
22
template.typ
|
@ -1,16 +1,26 @@
|
||||||
// Basic template settings. Must be shown at very begining
|
// Basic template settings. Must be shown at very begining
|
||||||
#let init(doc) = {
|
#let init(doc) = {
|
||||||
|
|
||||||
|
let opacity = "33" // opacity hex chars
|
||||||
|
|
||||||
|
let polymny = read("./assets/polymny.svg")
|
||||||
|
let polymny_transparent = polymny
|
||||||
|
.replace("#FFFFFFFF", "#FFFFFF" + opacity)
|
||||||
|
.replace("#EAE2D4FF", "#EAE2D4" + opacity)
|
||||||
|
.replace("#BDB299FF", "#BDB299" + opacity)
|
||||||
|
|
||||||
set page(
|
set page(
|
||||||
paper: "a4",
|
paper: "a4",
|
||||||
numbering: none,
|
numbering: none,
|
||||||
margin: (left: 0.25cm, right: 0.25cm, top: 0.5cm, bottom: 0.5cm),
|
margin: (left: 0.25cm, right: 0.25cm, top: 0.5cm, bottom: 0.5cm),
|
||||||
background: [
|
background: [
|
||||||
#align(top + left, rect(width: 5.55cm, height: 100%, fill: blue.lighten(90%)))
|
#place(bottom + left, dx: 2cm, dy: 2.75cm, {
|
||||||
#v(-100%)
|
image.decode(polymny_transparent, width: 65em, height: 65em)
|
||||||
#v(-1.3em)
|
})
|
||||||
#align(top, rect(width: 100%, height: 4.4cm, fill: blue))
|
|
||||||
#v(-5cm)
|
#place(top + left, rect(width: 5.55cm, height: 100%, fill: blue.lighten(90%)))
|
||||||
#align(top + left, box(inset: (x: 0.8cm, y: 1cm), image("./assets/moi.png", height: 4cm)))
|
#place(top + left, rect(width: 100%, height: 4.4cm, fill: blue))
|
||||||
|
#place(top + left, dx: 0.8cm, dy: 1cm, image("./assets/moi.png", height: 4cm))
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue