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

github.com/bjacquemet/personal-web.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Jacquemet <baptiste.jacquemet@gmail.com>2019-02-25 21:05:41 +0300
committerBaptiste Jacquemet <baptiste.jacquemet@gmail.com>2019-02-25 21:05:41 +0300
commit7c25e601826405314473ac1ffde24c06f53584ca (patch)
tree5148089e015e62aa11de56a225e57cc34c712d50
parent668329ba6fb4c8f857211284f5e5fbea7ae2c2d1 (diff)
add exampleSite basic
-rw-r--r--assets/sass/scaffold.sass3
-rw-r--r--exampleSite/config.toml92
-rw-r--r--static/images/gohper.pngbin0 -> 61765 bytes
3 files changed, 94 insertions, 1 deletions
diff --git a/assets/sass/scaffold.sass b/assets/sass/scaffold.sass
index e1d24a1..b061886 100644
--- a/assets/sass/scaffold.sass
+++ b/assets/sass/scaffold.sass
@@ -240,6 +240,7 @@ footer
p
margin-bottom: 0
-.gopher
+img.gopher
margin: 0 auto $margin-blocks !important
+ max-width: 200px
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..3ac2fa8
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,92 @@
+baseURL = "https://example.com/"
+languageCode = "en-us"
+title = "Edna West"
+theme = "personal_web"
+copyright="© Edna West"
+googleAnalytics = ""
+enableEmoji=true
+enableRobotsTXT=true
+
+[params.intro]
+ main = "Hi, I'm Edna :wave:"
+ sub = "I'm a Web Developer and Entrepreneur"
+
+[taxonomies]
+ design = "designs"
+ tech = "techs"
+
+[blackfriday]
+ hrefTargetBlank = true
+
+[params]
+ breadcrumb = true
+ accentColor = "#FD3519"
+
+[params.notFound]
+ gopher = "/images/gopher.png" # checkout https://gopherize.me/
+ h1 = 'Bummer!'
+ p = "It seems that this page doesn't exist."
+ mainSection = 'portfolio' # values: [post, portfolio] only accept one section, to be displayed bellow 404
+
+[params.sections]
+ # Define how your sections will be called
+ # when automatically pulled. For instance in the 404 page
+ post = "article"
+ portfolio = "project"
+
+[params.sidebar]
+ backgroundImage = '' #header background image - default "/images/default_sidebar.jpg"
+ gradientOverlay = 'rgba(0,0,0,0.4),rgba(0,0,0,0.4)' #default: rgba(0,0,0,0.4),rgba(0,0,0,0.4)
+ logo = "/images/edna-west.jpg"
+[params.assets]
+ favicon = ""
+ customCSS = ""
+
+[params.social]
+ github = "https://github.com/bjacquemet"
+ twitter = "https://twitter.com/jacquemetb"
+ linkedin = "https://www.linkedin.com/in/baptistej"
+
+[params.contact]
+ email = ""
+ text= "Say Hello!" # text of the contact link in the sidebar. If email params.contact.email is defined
+
+
+[menu]
+
+[[menu.main]]
+ identifier = "about"
+ name = "About"
+ title = "About section"
+ url = "/about/"
+ weight = -120
+
+[[menu.main]]
+ identifier = "portfolio"
+ name = "Portfolio"
+ title = "Portfolio"
+ url = "/portfolio/"
+ weight = -110
+
+[[menu.main]]
+ identifier = "blog"
+ name = "Post"
+ title = "Blog section"
+ url = "/post/"
+ weight = -100
+
+[sitemap]
+ changefreq = "monthly"
+ filename = "sitemap.xml"
+ priority = 0.5
+
+[privacy]
+ [privacy.googleAnalytics]
+ anonymizeIP = true
+ disable = true
+ respectDoNotTrack = true
+ useSessionStorage = false
+ [privacy.twitter]
+ disable = false
+ enableDNT = true
+ simple = false \ No newline at end of file
diff --git a/static/images/gohper.png b/static/images/gohper.png
new file mode 100644
index 0000000..84f30ce
--- /dev/null
+++ b/static/images/gohper.png
Binary files differ