Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/tylerjlawson/simple-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Lawson <tylerjlawson2@gmail.com>2020-10-10 20:03:57 +0300
committerTyler Lawson <tylerjlawson2@gmail.com>2020-10-10 20:03:57 +0300
commitcb58cf05a885421df9909aea3ef8e6773bee388f (patch)
tree0452863f2575627c8e0077c3a5af510b34d60cff
parenteff608a21dbdb56d89c62b391a80acc1f53b089d (diff)
print styling, added example data, added markdownify to points
-rw-r--r--assets/main.scss14
-rw-r--r--exampleSite/config.toml3
-rw-r--r--exampleSite/data/content.toml76
-rw-r--r--layouts/index.html2
-rw-r--r--layouts/partials/experiences.html2
5 files changed, 82 insertions, 15 deletions
diff --git a/assets/main.scss b/assets/main.scss
index 402eaae..88ec8f3 100644
--- a/assets/main.scss
+++ b/assets/main.scss
@@ -132,19 +132,7 @@ header {
}
@media print {
- .wrap {
- padding: 0;
- }
-
html {
- zoom: 0.8;
- }
-
- a {
- font-size: 14px;
- }
-
- h1 {
- font-size: 45px;
+ zoom: 1.05;
}
}
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..19910fb
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,3 @@
+title = "George's Resume"
+theme = "simple-resume"
+disableKinds = ["taxonomy", "term"]
diff --git a/exampleSite/data/content.toml b/exampleSite/data/content.toml
new file mode 100644
index 0000000..0533edb
--- /dev/null
+++ b/exampleSite/data/content.toml
@@ -0,0 +1,76 @@
+name = "George Carlin"
+email = "me@georgecarlin.com"
+phone = "2125121957"
+website = "GeorgeCarlin.com"
+github = "GeorgeCarlin"
+objective = "Always do what's next"
+
+[[schools]]
+name = "Salesian High School"
+location = "Goshen, NY"
+startdate = "Jan 1954"
+enddate = "June 1956"
+degrees = ["Diploma"]
+
+[[schools]]
+name = "Bishop Dubois High School"
+location = "Harlem"
+startdate = "Jan 1953"
+enddate = "Dec 1953"
+
+[[schools]]
+name = "Cardinal Hayes High School (Expelled)"
+location = "The Bronx"
+startdate = "Sept 1951"
+enddate = "Dec 1952"
+
+[[experiences]]
+position = "Stand-up Comedian"
+company = "Usually HBO"
+location = "Everywhere"
+startdate = "Jun 1959"
+enddate = "Jun 2008"
+points = [
+ "Started in a comedy duo with Jack Burns, a fellow DJ from Texas",
+ "Arrested with Lenny Bruce when he told the police that he did not believe in government issues IDs",
+ "In the 70s I blew up in popularity with the *Seven Dirty Words* routine"
+]
+
+[[experiences]]
+position = "Film Actor"
+company = "Movie People"
+location = "Los Angeles, CA"
+startdate = "Sep 1987"
+enddate = "Jan 2006"
+points = [
+ "Started in a supporting role in *Outrageous Future*, a hit comedy",
+ "Became the time-traveling mentor, Rufus in *Bill & Ted's Bodus Journey*",
+ "Final movie was a voice acting position in *Cars* as the character Fillmore, the green 1960 VW Bus"
+]
+
+[[experiences]]
+position = "Radar Technician"
+company = "United State Air Force"
+location = "Bossier City, LA"
+startdate = "Aug 1956"
+enddate = "Jul 1957"
+points = [
+ "Trained and practiced as a radar techinician at Barksdale Air Force Base",
+ "Moonlighted as a disc jockey at local radio station, KJOE",
+ "Labeled as an 'unproductive airman' by his superiors and was given a general discharge",
+ "Court-martialed three times, and also received many nonjudicial punishments and reprimands"
+]
+
+
+[[info]]
+name = "Some Quotes"
+points = [
+ "Some people see things that are and ask, Why? Some people dream of things that never were and ask, Why not? Some people have to go to work and don't have time for all that.",
+ "Don't tech your children to read... teach them to *question* what they read, teach them to question everything.",
+ "Trying to be happy by accumulating possessions is like trying to satisfy hunger by taping sanwiches all over your body",
+ "Have you ever noticed that anybody driving slower than you is an idiot and anyone going faster is a maniac?",
+ "Think off-center",
+ "It's all bullshit, and it's bad for ya",
+ "Not only do I not know what's going on, I wouldn't know what to do about it if I did.",
+ "Seven dirty words"
+]
diff --git a/layouts/index.html b/layouts/index.html
index cfd0b41..4fdc5f9 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -23,7 +23,7 @@
<h2>{{ .name }}</h2>
<ul>
{{ range .points }}
- <li>{{ . }}</li>
+ <li>{{ . | markdownify }}</li>
{{ end }}
</ul>
</section>
diff --git a/layouts/partials/experiences.html b/layouts/partials/experiences.html
index 76acd71..3d0a464 100644
--- a/layouts/partials/experiences.html
+++ b/layouts/partials/experiences.html
@@ -8,7 +8,7 @@
</div>
<ul>
{{ range .points }}
- <li>{{ . }}</li>
+ <li>{{ . | markdownify }}</li>
{{ end }}
</ul>
</div>