commit af137b25b06213294a3f7db41423111cceff0d8f Author: Laurent Le Houerou Date: Fri Dec 18 14:27:46 2020 +0400 initial commit diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..acbabe0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "themes/academia"] + path = themes/academia + url = https://github.com/themefisher/academia-hugo.git +[submodule "themes/hugo-sustain"] + path = themes/hugo-sustain + url = https://github.com/nurlansu/hugo-sustain.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..36f306d --- /dev/null +++ b/config.toml @@ -0,0 +1,44 @@ +baseurl = "https://laurentlehouerou.com" +languageCode = "fr-FR" +title = "Laurent Le Houerou" +# Enable comments by entering your Disqus shortname +disqusShortname = "" +# Enable Google Analytics by entering your tracking code +googleAnalytics = "" +theme = "hugo-sustain" + +[permalinks] + post = "/:year/:month/:day/:slug" + +[params] + avatar = "profile.jpg" + author = "Laurent Le Houerou" + description = "Description" + + # Custom assets can be linked with their paths relative to static/ + custom_css = [] + custom_js = [] + +[params.social] + Github = "llehouerou" + Email = "laurent@lehouerou.net" + Twitter = "HouerouLaurent" + LinkedIn = "laurent-le-houerou-2799461a" + Stackoverflow = "laurent-le-houerou" + +# ## Main Menu +# [[menu.main]] +# name = "blog" +# weight = 100 +# identifier = "blog" +# url = "/blog/" +# [[menu.main]] +# name = "projects" +# identifier = "projects" +# weight = 200 +# url = "/projects/" +# [[menu.main]] +# name = "resume" +# identifier = "resume" +# weight = 300 +# url = "/resume/" diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..ea3d439 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,18 @@ +{{ partial "head" . }} + +
+ {{ partial "header" . }} +
+
+
+ Responsive image +
+

I'm {{ .Site.Params.author }}, a Software Engineer.

+

Contact me at @{{ .Site.Params.Social.Twitter }} or by email.

+ {{ partial "social.html" . }} +
+
+
+ {{ partial "footer" . }} + + diff --git a/public/categories/index.xml b/public/categories/index.xml new file mode 100644 index 0000000..b92677a --- /dev/null +++ b/public/categories/index.xml @@ -0,0 +1,10 @@ + + + + Categories on My New Hugo Site + http://example.org/categories/ + Recent content in Categories on My New Hugo Site + Hugo -- gohugo.io + en-us + + diff --git a/public/index.xml b/public/index.xml new file mode 100644 index 0000000..da90485 --- /dev/null +++ b/public/index.xml @@ -0,0 +1,10 @@ + + + + My New Hugo Site + http://example.org/ + Recent content on My New Hugo Site + Hugo -- gohugo.io + en-us + + diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..6bf7bad --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,17 @@ + + + + + http://example.org/categories/ + + + + http://example.org/ + + + + http://example.org/tags/ + + + diff --git a/public/tags/index.xml b/public/tags/index.xml new file mode 100644 index 0000000..201eda6 --- /dev/null +++ b/public/tags/index.xml @@ -0,0 +1,10 @@ + + + + Tags on My New Hugo Site + http://example.org/tags/ + Recent content in Tags on My New Hugo Site + Hugo -- gohugo.io + en-us + + diff --git a/static/img/profile.jpg b/static/img/profile.jpg new file mode 100644 index 0000000..36c4627 Binary files /dev/null and b/static/img/profile.jpg differ diff --git a/themes/hugo-sustain b/themes/hugo-sustain new file mode 160000 index 0000000..cdd0fb5 --- /dev/null +++ b/themes/hugo-sustain @@ -0,0 +1 @@ +Subproject commit cdd0fb54cfb13cec22d6db9e2166310ab7ab16ed