Editorial Blue

Single-column editorial layout with a centred uppercase masthead, blue rules and a compact skills table.

2 pages

Editorial Blue, page 1 of 2 (opens the PDF)
Page 1 of 2
Editorial Blue, page 2 of 2 (opens the PDF)
Page 2 of 2

Use this template

Maven
<dependency>
  <groupId>io.github.demchaav</groupId>
  <artifactId>graph-compose</artifactId>
  <version>2.4.1</version>
</dependency>
<dependency>
  <groupId>io.github.demchaav</groupId>
  <artifactId>graph-compose-templates</artifactId>
  <version>2.4.1</version>
</dependency>
Gradle
implementation 'io.github.demchaav:graph-compose:2.4.1'
implementation 'io.github.demchaav:graph-compose-templates:2.4.1'

Java 17 or newer

Preset com.demcha.compose.document.templates.cv.presets.EditorialBlue

Data model com.demcha.compose.document.templates.cv.data.CvDocument

Compose this preset
import com.demcha.compose.document.templates.cv.presets.EditorialBlue;

DocumentTemplate<CvDocument> template = EditorialBlue.create();

try (DocumentSession document = GraphCompose.document(Path.of("cv-editorial-blue-v2.pdf")).create()) {
    template.compose(document, data);   // data: CvDocument
    document.buildPdf();
}
Run the example
./mvnw -f examples/pom.xml exec:java -Dexec.mainClass=com.demcha.examples.templates.cv.v2.CvEditorialBlueExample

Writes examples/target/generated-pdfs/templates/cv/cv-editorial-blue-v2.pdf