From 5d08140ed04e88c4b4f27e7c3ce820dad931baf7 Mon Sep 17 00:00:00 2001 From: Olivier Roques Date: Sun, 2 Aug 2020 00:38:02 +0200 Subject: Add example website --- exampleSite/config.toml | 31 +++++++++++++++++++++++++++++ exampleSite/content/_index.md | 1 + exampleSite/content/about.md | 44 +++++++++++++++++++++++++++++++++++++++++ exampleSite/content/contact.md | 24 ++++++++++++++++++++++ exampleSite/static/avatar.jpg | Bin 0 -> 12302 bytes exampleSite/static/favicon.ico | Bin 0 -> 15086 bytes exampleSite/static/resume.pdf | Bin 0 -> 32260 bytes 7 files changed, 100 insertions(+) create mode 100644 exampleSite/config.toml create mode 120000 exampleSite/content/_index.md create mode 100644 exampleSite/content/about.md create mode 100644 exampleSite/content/contact.md create mode 100644 exampleSite/static/avatar.jpg create mode 100644 exampleSite/static/favicon.ico create mode 100644 exampleSite/static/resume.pdf diff --git a/exampleSite/config.toml b/exampleSite/config.toml new file mode 100644 index 0000000..ab94b95 --- /dev/null +++ b/exampleSite/config.toml @@ -0,0 +1,31 @@ +title = "Researcher" +baseURL = "https://ojroques.github.io" +theme = "researcher" + +[params] + author = "Olivier Roques" + description = "A Hugo template." + favicon = "favicon.ico" + [params.footer] + text = "By Olivier Roques" + url = "https://github.com/ojroques/hugo-researcher" + +[permalinks] + "/" = "/:filename" + +[menu] + [[menu.navbar]] + name = "About" + url = "/about" + weight = 1 + [[menu.navbar]] + name = "Resume" + url = "/resume.pdf" + weight = 2 + [[menu.navbar]] + name = "Contact" + url = "/contact" + weight = 3 + +[markup.goldmark.renderer] + unsafe= true diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md new file mode 120000 index 0000000..9728823 --- /dev/null +++ b/exampleSite/content/_index.md @@ -0,0 +1 @@ +about.md \ No newline at end of file diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md new file mode 100644 index 0000000..8d5a559 --- /dev/null +++ b/exampleSite/content/about.md @@ -0,0 +1,44 @@ ++++ +title = "About" ++++ + +## About Me + + + +This is a jekyll based resume template. You can find the full source code on [GitHub](https://github.com/ojroques/researcher). + +## Research Interest + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam finibus ipsum ac erat aliquam dapibus. Vestibulum vehicula placerat ex, a consectetur odio pharetra quis. Mauris id urna ante. Fusce pharetra diam ac nisi aliquet, vel egestas ex iaculis. Pellentesque laoreet cursus tellus sed pellentesque. Praesent a rhoncus elit. Nunc ipsum nisl, consequat sit amet pretium quis, gravida id ipsum. + +## Publications + +In chronological order: +1. F.Bar, J.Doe: Effects of having a placeholder of a name +2. S.Holmes, J.Watson: Consequences of living with a sociopath in London + +## Typography + +This is a [link](http://google.com). Something *italics* and something **bold**. + +Here is a table + +Year | Award | Category +-----|-------|-------- +2014 | Emmy | Won Outstanding Lead Actor in a miniseries or a movie +2015 | BAFTA | Nominated for Best Leading Actor for Sherlock +2014 | Satellite | Won Best Actor miniseries or television film + +Here is a horizontal rule + +--- + +Here is a blockquote + +> To a great mind, nothing is little + +## References + +* Foo Bar: Head of Department, Placeholder Names, Lorem +* John Doe: Associate Professor, Department of Computer Science, Ipsum diff --git a/exampleSite/content/contact.md b/exampleSite/content/contact.md new file mode 100644 index 0000000..a8864e1 --- /dev/null +++ b/exampleSite/content/contact.md @@ -0,0 +1,24 @@ ++++ +title = "Contact" ++++ + +* Email: [foo@xyz.com](mailto:foo@xyz.com) +* Phone: [+91-123123](tel:+91-123123) + +--- + +## Mailing Address + +> 221B, Baker Street +> +> London +> +> United Kingdom + +--- + +## Social + +1. [Facebook](#) +2. [Twitter](#) +3. [Google+](#) diff --git a/exampleSite/static/avatar.jpg b/exampleSite/static/avatar.jpg new file mode 100644 index 0000000..062be4a Binary files /dev/null and b/exampleSite/static/avatar.jpg differ diff --git a/exampleSite/static/favicon.ico b/exampleSite/static/favicon.ico new file mode 100644 index 0000000..bb58b26 Binary files /dev/null and b/exampleSite/static/favicon.ico differ diff --git a/exampleSite/static/resume.pdf b/exampleSite/static/resume.pdf new file mode 100644 index 0000000..dc476ff Binary files /dev/null and b/exampleSite/static/resume.pdf differ -- cgit v1.2.3