mirror of
https://github.com/rendercv/rendercv.git
synced 2026-05-18 13:37:16 -04:00
create markdown templates
This commit is contained in:
9
rendercv/themes/main.j2.md
Normal file
9
rendercv/themes/main.j2.md
Normal file
@@ -0,0 +1,9 @@
|
||||
<<header>>
|
||||
|
||||
((* for section_beginning, entries in sections*))
|
||||
<<section_beginning>>
|
||||
|
||||
((* for entry in entries *))
|
||||
<<entry>>
|
||||
((* endfor *))
|
||||
((* endfor *))
|
||||
7
rendercv/themes/markdown/EducationEntry.j2.md
Normal file
7
rendercv/themes/markdown/EducationEntry.j2.md
Normal file
@@ -0,0 +1,7 @@
|
||||
## <<entry.institution>>, <<entry.degree>> in <<entry.area>>
|
||||
|
||||
((* if entry.date_string *))- <<entry.date_string>> ((* endif *))
|
||||
((* if entry.location *))- <<entry.location>> ((* endif *))
|
||||
((* for item in entry.highlights *))
|
||||
- <<item>>
|
||||
((* endfor *))
|
||||
9
rendercv/themes/markdown/ExperienceEntry.j2.md
Normal file
9
rendercv/themes/markdown/ExperienceEntry.j2.md
Normal file
@@ -0,0 +1,9 @@
|
||||
## <<entry.company>>, <<entry.position>>
|
||||
|
||||
((* if entry.date_string *))- <<entry.date_string>> ((* endif *))
|
||||
|
||||
((* if entry.location *))- <<entry.location>> ((* endif *))
|
||||
|
||||
((* for item in entry.highlights *))
|
||||
- <<item>>
|
||||
((* endfor *))
|
||||
19
rendercv/themes/markdown/Header.j2.md
Normal file
19
rendercv/themes/markdown/Header.j2.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# <<cv.name>>'s CV
|
||||
|
||||
((* if cv.phone *))
|
||||
- Phone: <<cv.phone|replace("tel:", "")|replace("-"," ")>>
|
||||
((* endif *))
|
||||
((* if cv.email *))
|
||||
- Email: [<<cv.email>>](mailto:<<cv.email>>)
|
||||
((* endif *))
|
||||
((* if cv.location *))
|
||||
- Location: <<cv.location>>
|
||||
((* endif *))
|
||||
((* if cv.website *))
|
||||
- Website: [<<cv.website|replace("https://","")|replace("/","")>>](<<cv.website>>)
|
||||
((* endif *))
|
||||
((* if cv.social_networks *))
|
||||
((* for network in cv.social_networks *))
|
||||
- <<network.network>>: [<<network.username>>](<<network.url>>)
|
||||
((* endfor *))
|
||||
((* endif *))
|
||||
7
rendercv/themes/markdown/NormalEntry.j2.md
Normal file
7
rendercv/themes/markdown/NormalEntry.j2.md
Normal file
@@ -0,0 +1,7 @@
|
||||
## <<entry.name>>
|
||||
|
||||
((* if entry.date_string *))- <<entry.date_string>> ((* endif *))
|
||||
((* if entry.location *))- <<entry.location>> ((* endif *))
|
||||
((* for item in entry.highlights *))
|
||||
- <<item>>
|
||||
((* endfor *))
|
||||
1
rendercv/themes/markdown/OneLineEntry.j2.md
Normal file
1
rendercv/themes/markdown/OneLineEntry.j2.md
Normal file
@@ -0,0 +1 @@
|
||||
- <<entry.name>>: <<entry.details>>
|
||||
5
rendercv/themes/markdown/PublicationEntry.j2.md
Normal file
5
rendercv/themes/markdown/PublicationEntry.j2.md
Normal file
@@ -0,0 +1,5 @@
|
||||
## <<entry.title>> ([<<entry.doi>>](<<entry.doi_url>>))
|
||||
|
||||
- <<entry.date_string>>
|
||||
- <<entry.authors|map("abbreviate_name")|join(", ")>>
|
||||
((* if entry.journal *))- <<entry.journal>> ((* endif *))
|
||||
1
rendercv/themes/markdown/SectionBeginning.j2.md
Normal file
1
rendercv/themes/markdown/SectionBeginning.j2.md
Normal file
@@ -0,0 +1 @@
|
||||
# <<section_title>>
|
||||
1
rendercv/themes/markdown/TextEntry.j2.md
Normal file
1
rendercv/themes/markdown/TextEntry.j2.md
Normal file
@@ -0,0 +1 @@
|
||||
<<entry>>
|
||||
Reference in New Issue
Block a user