feat: add job title

This commit is contained in:
Ondrej Vlach 2023-12-07 22:57:14 +01:00
parent 0a21cc140a
commit 26b7b8575c
Signed by: ovlach
GPG Key ID: 4FF1A23B4914DE70
3 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -1674,9 +1674,9 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "ovlach_data"
version = "0.1.2"
version = "0.1.3"
source = "sparse+https://git.nanobyte.cz/api/packages/ovlach/cargo/"
checksum = "98843b3cefbdbf054f13312e82493248501cdd8abb39379ca2546559358c1437"
checksum = "ad1ebb102ddf00183d68eeb8527f8f6458d6b8ffbd6737f39a485af7370da940"
dependencies = [
"chrono",
"rocket",

View File

@ -14,7 +14,7 @@ rocket = { version = "0.5.0", features = ["json"] }
rocket_dyn_templates = { version = "0.1.0", features = ["tera"]}
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
ovlach_data = { version = "0.1.2", registry = "gitea_ovlach"}
ovlach_data = { version = "0.1.3", registry = "gitea_ovlach"}
nanobyte_opentelemetry = { version = "0.2.3", registry = "gitea_nanobyte", features = ["rocket-reqwest"] }
chrono = "0.4.31"
sha256 = "1.4.0"

View File

@ -14,7 +14,7 @@
<div class="header-bio mt-3">
<div data-aos="zoom-in" data-aos-delay="0">
<h2 class="h1"> {{ cv.person.name }} {{ cv.person.surname }} </h2>
<p>{{ "devops-enginner-web-developer" | translate(lang=lang) }}</p>
<p>{{ cv.person.job_title | lang_entity(lang=lang) }}</p>
</div>
<div class="header-social mb-3 d-print-none" data-aos="zoom-in" data-aos-delay="200">
<nav role="navigation">
@ -291,7 +291,7 @@
<div class="row mb-4">
<div class="col-md-5" data-aos="fade-left" data-aos-delay="200">
<div class="d-print-none">
<form action="{{ contact_svc }}" method="POST">
<!-- <form action="{{ contact_svc }}" method="POST">
<div class="form-outline mb-4">
<input type="text" id="name" class="form-control" required/>
<label class="form-label" for="name">Name</label>
@ -305,7 +305,7 @@
<label class="form-label" for="message">Message</label>
</div>
<button class="btn btn-info btn-block mb-4" type="submit">Send</button>
</form>
</form> -->
</div>
</div>