From 85beff3b0aae71081f0337eab633c0605c9d00cf Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Thu, 18 Feb 2021 19:38:28 +0100 Subject: Basic configuration for the Hugo theme --- .gitignore | 2 ++ assets/images/avatar-100.png | Bin 0 -> 14720 bytes assets/images/avatar-100.webp | Bin 0 -> 2470 bytes assets/images/avatar-200.png | Bin 0 -> 49365 bytes assets/images/avatar-200.webp | Bin 0 -> 4928 bytes assets/images/avatar-300.png | Bin 0 -> 104141 bytes assets/images/avatar-300.webp | Bin 0 -> 7252 bytes config.toml | 74 +++++++++++++++++++++++++++++++++--------- content/_index.md | 7 ++++ themes/marussy | 2 +- 10 files changed, 68 insertions(+), 17 deletions(-) create mode 100644 assets/images/avatar-100.png create mode 100644 assets/images/avatar-100.webp create mode 100644 assets/images/avatar-200.png create mode 100644 assets/images/avatar-200.webp create mode 100644 assets/images/avatar-300.png create mode 100644 assets/images/avatar-300.webp create mode 100644 content/_index.md diff --git a/.gitignore b/.gitignore index 1c5dc94..1aaf957 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ # Hugo default output directory /public + +/resources/_gen diff --git a/assets/images/avatar-100.png b/assets/images/avatar-100.png new file mode 100644 index 0000000..d2e8837 Binary files /dev/null and b/assets/images/avatar-100.png differ diff --git a/assets/images/avatar-100.webp b/assets/images/avatar-100.webp new file mode 100644 index 0000000..98ab799 Binary files /dev/null and b/assets/images/avatar-100.webp differ diff --git a/assets/images/avatar-200.png b/assets/images/avatar-200.png new file mode 100644 index 0000000..5e31e71 Binary files /dev/null and b/assets/images/avatar-200.png differ diff --git a/assets/images/avatar-200.webp b/assets/images/avatar-200.webp new file mode 100644 index 0000000..9338824 Binary files /dev/null and b/assets/images/avatar-200.webp differ diff --git a/assets/images/avatar-300.png b/assets/images/avatar-300.png new file mode 100644 index 0000000..6d0433d Binary files /dev/null and b/assets/images/avatar-300.png differ diff --git a/assets/images/avatar-300.webp b/assets/images/avatar-300.webp new file mode 100644 index 0000000..102d674 Binary files /dev/null and b/assets/images/avatar-300.webp differ diff --git a/config.toml b/config.toml index 3a27c75..d603064 100644 --- a/config.toml +++ b/config.toml @@ -24,24 +24,66 @@ pygmentsCodeFences = true pygmentsUseClasses = true [permalinks] - posts = "/:year/:month/:day/:title" +posts = "/:year/:month/:day/:title" [markup.goldmark.renderer] - # Required for ox-hugo support, see - # https://ox-hugo.scripter.co/doc/goldmark/ - unsafe = true +# Required for ox-hugo support, see +# https://ox-hugo.scripter.co/doc/goldmark/ +unsafe = true + +[params] +familyNameFirst = false +givenName = "Kristóf" +familyName = "Marussy" + +[[params.contacts]] +name = "Email" +address = "kristof@marussy.com" +url = "mailto:kristof@marussy.com" +class = "email" + +[[params.contacts]] +name = "GPG" +address = "B00C29F3D5A628AF" +url = "/gpg/" + +[[params.contacts]] +name = "Mastodon" +address = "@kristof@marussy.com" +url = "https://pleroma.marussy.com/users/kristof" + +[[params.contacts]] +name = "Git" +address = "git.marussy.com" +url = "https://git.marussy.com" + +[[params.contacts]] +name = "ORCID" +address = "0000-0002-9135-8256" +url = "https://orcid.org/0000-0002-9135-8256" [menu] - [[menu.main]] - identifier = "about" - name = "About" - url = "/" - # [[menu.main]] - # identifier = "blog" - # name = "Blog" - # url = "/posts" - [[menu.main]] - identifier = "publications" - name = "Publications" - url = "/publications" +[[menu.main]] +identifier = "about" +name = "About" +url = "/" +weight = -100 + +[[menu.main]] +identifier = "posts" +name = "Blog" +url = "/posts" +weight = -90 + +[[menu.main]] +identifier = "publications" +name = "Research" +url = "/publications/" +weight = -80 + +[[menu.main]] +identifier = "software" +name = "Code" +url = "/software/" +weight = -70 diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..7204757 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,7 @@ +# This is a heading + +Hello World! [This is a link](/). + +One morning, when **Gregor Samsa** woke from _troubled dreams,_ he found himself transformed in his bed into a [horrible vermin](/). He lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections. The bedding was hardly able to cover it and seemed ready to slide off any moment. His many legs, pitifully thin compared with the size of the rest of him, waved about helplessly as he looked. "What's happened to me?" he thought. + +It wasn't a dream. His room, a proper human room although a little too small, lay peacefully between its four familiar walls. A collection of textile samples lay spread out on the table -- Samsa was a travelling salesman -- and above it there hung a picture that he had recently cut out of an illustrated magazine and housed in a nice, gilded frame. It showed a lady fitted out with a fur hat and fur boa who sat upright, raising a heavy fur muff that covered the whole of her lower arm towards the viewer. Gregor then turned to look out the window at the dull weather. diff --git a/themes/marussy b/themes/marussy index c090355..ba6800a 160000 --- a/themes/marussy +++ b/themes/marussy @@ -1 +1 @@ -Subproject commit c090355ea18f9ec2df5242cca1d41efddf9c01f2 +Subproject commit ba6800ad896550d56dca0b1250c51936c5fb7d8e -- cgit v1.2.3-54-g00ecf