commit ee25af9f6171f2b7f07fbfdbb6ef7e3684450cd2 Author: Alex Selimov Date: Sun Feb 12 14:34:27 2023 -0500 Initial theme commit diff --git a/' b/' new file mode 100644 index 0000000..cb7b1aa --- /dev/null +++ b/' @@ -0,0 +1,53 @@ +
+
+ +
+

Alex Selimov

+
+
+ +
+
+ + + +
+
+ +
+
+
+ +
+
+
+ +
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..147d594 --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2022 YOUR_NAME_HERE + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..fc8924f --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Personal Hugo Theme + +This is the theme that I've developed for my personal website [alexselimov.com](https://alexselimov.com). +Reach out to me if you have any questions or if you need help adjusting it to your needs. diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..22494d9 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +--- ++++ ++++ diff --git a/archetypes/posts.md b/archetypes/posts.md new file mode 100644 index 0000000..79a26cd --- /dev/null +++ b/archetypes/posts.md @@ -0,0 +1,5 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +--- +<++> diff --git a/archetypes/publications.md b/archetypes/publications.md new file mode 100644 index 0000000..ed506e9 --- /dev/null +++ b/archetypes/publications.md @@ -0,0 +1,16 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +authors: <++> +linkToPublisher: "<++>" +manuscriptLink: "<++>" +citation: "<++>" +figureLink: "<++>" +figureCaption: "<++>" +draft: false +--- + +Abstract: + + + diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..4a82ab7 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,11 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+ {{- block "main" . }}{{- end }} +
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..196a932 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,20 @@ +{{ define "main" }} +
+
+
+

{{ .Title }}

+ {{ .Content }} + +
+
+
+{{ end }} + diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..b2b8019 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,11 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+ {{- block "main" . }} {{ .Content }} {{- end }} +
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/basic.html b/layouts/basic.html new file mode 100644 index 0000000..977151f --- /dev/null +++ b/layouts/basic.html @@ -0,0 +1,27 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+
+ {{- block "main" . }} + {{ .Title }}
+ Authors: {{ .Params.authors }}
+
+ {{ if .Params.linkToPublisher }} Link to publisher
{{ end }} + + {{ if .Params.manuscriptLink }} Click here to download manuscript preprint

{{ end }} + + {{ .Content }} + {{ if .Params.figureLink }} + {{ if.Params.figureCaption }} +
{{ .Params.figureCaption }}
+ {{ end }} + {{ end}} + {{- end }} +
+
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/cv/single.html b/layouts/cv/single.html new file mode 100644 index 0000000..b2b8019 --- /dev/null +++ b/layouts/cv/single.html @@ -0,0 +1,11 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+ {{- block "main" . }} {{ .Content }} {{- end }} +
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..b98b45a --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,53 @@ +{{ define "main" }} +
+
+
+
+ Alex Selimov headshot +
+ +

{{ .Site.Params.name }}

+

{{ .Site.Params.tagline}}
+ {{ .Site.Params.company}}

+ + {{if isset .Site.Params "email"}} + + {{end}} + {{if isset .Site.Params "gitlab"}} + + {{end}} + + {{if isset .Site.Params "scholar"}} + + {{end}} + + {{if isset .Site.Params "gnupg"}} + + {{end}} +
+
+
+
+
+
+ {{.Content}} +
+
+
+

Recent

+ +
+ +{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..c686356 --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,14 @@ + + + + + {{ .Site.Title }} + + + + + + + + + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..85bece9 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,53 @@ +
+
+ +
+

Alex Selimov

+
+
+ +
+
+ + + +
+
+ +
+
+
+ +
+ +
diff --git a/layouts/posts/list.bak b/layouts/posts/list.bak new file mode 100644 index 0000000..35f6233 --- /dev/null +++ b/layouts/posts/list.bak @@ -0,0 +1,16 @@ +{{ define "main" }} +
+
+
+

{{ .Title }}

+ {{ .Content }} + {{ range .Pages }} + + {{ end }} +
+
+
+{{ end }} + diff --git a/layouts/posts/single.html b/layouts/posts/single.html new file mode 100644 index 0000000..7d55503 --- /dev/null +++ b/layouts/posts/single.html @@ -0,0 +1,15 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+
+

{{ .Title }}

+
+ {{ .Content }} +
+
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/presentations/list.html b/layouts/presentations/list.html new file mode 100644 index 0000000..1c50f27 --- /dev/null +++ b/layouts/presentations/list.html @@ -0,0 +1,28 @@ +{{ define "main" }} +
+
+
+

{{ .Title }}

+ {{ .Content }} + +
+
+
+{{ end }} + diff --git a/layouts/publications/list.html b/layouts/publications/list.html new file mode 100644 index 0000000..196a932 --- /dev/null +++ b/layouts/publications/list.html @@ -0,0 +1,20 @@ +{{ define "main" }} +
+
+
+

{{ .Title }}

+ {{ .Content }} + +
+
+
+{{ end }} + diff --git a/layouts/publications/single.html b/layouts/publications/single.html new file mode 100644 index 0000000..977151f --- /dev/null +++ b/layouts/publications/single.html @@ -0,0 +1,27 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+
+ {{- block "main" . }} + {{ .Title }}
+ Authors: {{ .Params.authors }}
+
+ {{ if .Params.linkToPublisher }} Link to publisher
{{ end }} + + {{ if .Params.manuscriptLink }} Click here to download manuscript preprint

{{ end }} + + {{ .Content }} + {{ if .Params.figureLink }} + {{ if.Params.figureCaption }} +
{{ .Params.figureCaption }}
+ {{ end }} + {{ end}} + {{- end }} +
+
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/recipes/list.html b/layouts/recipes/list.html new file mode 100644 index 0000000..2fb7775 --- /dev/null +++ b/layouts/recipes/list.html @@ -0,0 +1,23 @@ +{{ define "main" }} +
+
+
+

{{ .Title }}

+ {{ range .Site.Taxonomies.tags }} + {{ .Page.Title }} {{ .Count }} · + {{ end }} + {{ .Content }} + +
+
+
+{{ end }} + diff --git a/layouts/recipes/single.html b/layouts/recipes/single.html new file mode 100644 index 0000000..bc16689 --- /dev/null +++ b/layouts/recipes/single.html @@ -0,0 +1,16 @@ + + + {{- partial "head.html" . -}} + + {{- partial "header.html" . -}} +
+
+

{{ .Title }}

+ Tags:{{ .Params.tags }} +
+ {{ .Content }} +
+
+ {{- partial "footer.html" . -}} + + diff --git a/layouts/shortcodes/fontawesome.html b/layouts/shortcodes/fontawesome.html new file mode 100644 index 0000000..7e68a9c --- /dev/null +++ b/layouts/shortcodes/fontawesome.html @@ -0,0 +1 @@ + diff --git a/layouts/shortcodes/presentations.html b/layouts/shortcodes/presentations.html new file mode 100644 index 0000000..be87291 --- /dev/null +++ b/layouts/shortcodes/presentations.html @@ -0,0 +1,5 @@ + diff --git a/layouts/shortcodes/publications.html b/layouts/shortcodes/publications.html new file mode 100644 index 0000000..a51b3b3 --- /dev/null +++ b/layouts/shortcodes/publications.html @@ -0,0 +1,5 @@ + diff --git a/layouts/shortcodes/recent-articles.html b/layouts/shortcodes/recent-articles.html new file mode 100644 index 0000000..e69de29 diff --git a/static/css/normalize.css b/static/css/normalize.css new file mode 100644 index 0000000..458eea1 --- /dev/null +++ b/static/css/normalize.css @@ -0,0 +1,427 @@ +/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ + +/** + * 1. Set default font family to sans-serif. + * 2. Prevent iOS text size adjust after orientation change, without disabling + * user zoom. + */ + +html { + font-family: sans-serif; /* 1 */ + -ms-text-size-adjust: 100%; /* 2 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/** + * Remove default margin. + */ + +body { + margin: 0; +} + +/* HTML5 display definitions + ========================================================================== */ + +/** + * Correct `block` display not defined for any HTML5 element in IE 8/9. + * Correct `block` display not defined for `details` or `summary` in IE 10/11 + * and Firefox. + * Correct `block` display not defined for `main` in IE 11. + */ + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} + +/** + * 1. Correct `inline-block` display not defined in IE 8/9. + * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. + */ + +audio, +canvas, +progress, +video { + display: inline-block; /* 1 */ + vertical-align: baseline; /* 2 */ +} + +/** + * Prevent modern browsers from displaying `audio` without controls. + * Remove excess height in iOS 5 devices. + */ + +audio:not([controls]) { + display: none; + height: 0; +} + +/** + * Address `[hidden]` styling not present in IE 8/9/10. + * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. + */ + +[hidden], +template { + display: none; +} + +/* Links + ========================================================================== */ + +/** + * Remove the gray background color from active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * Improve readability when focused and also mouse hovered in all browsers. + */ + +a:active, +a:hover { + outline: 0; +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Address styling not present in IE 8/9/10/11, Safari, and Chrome. + */ + +abbr[title] { + border-bottom: 1px dotted; +} + +/** + * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. + */ + +b, +strong { + font-weight: bold; +} + +/** + * Address styling not present in Safari and Chrome. + */ + +dfn { + font-style: italic; +} + +/** + * Address variable `h1` font-size and margin within `section` and `article` + * contexts in Firefox 4+, Safari, and Chrome. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/** + * Address styling not present in IE 8/9. + */ + +mark { + background: #ff0; + color: #000; +} + +/** + * Address inconsistent and variable font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` affecting `line-height` in all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sup { + top: -0.5em; +} + +sub { + bottom: -0.25em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove border when inside `a` element in IE 8/9/10. + */ + +img { + border: 0; +} + +/** + * Correct overflow not hidden in IE 9/10/11. + */ + +svg:not(:root) { + overflow: hidden; +} + +/* Grouping content + ========================================================================== */ + +/** + * Address margin not present in IE 8/9 and Safari. + */ + +figure { + margin: 1em 40px; +} + +/** + * Address differences between Firefox and other browsers. + */ + +hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} + +/** + * Contain overflow in all browsers. + */ + +pre { + overflow: auto; +} + +/** + * Address odd `em`-unit font size rendering in all browsers. + */ + +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} + +/* Forms + ========================================================================== */ + +/** + * Known limitation: by default, Chrome and Safari on OS X allow very limited + * styling of `select`, unless a `border` property is set. + */ + +/** + * 1. Correct color not being inherited. + * Known issue: affects color of disabled elements. + * 2. Correct font properties not being inherited. + * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. + */ + +button, +input, +optgroup, +select, +textarea { + color: inherit; /* 1 */ + font: inherit; /* 2 */ + margin: 0; /* 3 */ +} + +/** + * Address `overflow` set to `hidden` in IE 8/9/10/11. + */ + +button { + overflow: visible; +} + +/** + * Address inconsistent `text-transform` inheritance for `button` and `select`. + * All other form control elements do not inherit `text-transform` values. + * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. + * Correct `select` style inheritance in Firefox. + */ + +button, +select { + text-transform: none; +} + +/** + * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` + * and `video` controls. + * 2. Correct inability to style clickable `input` types in iOS. + * 3. Improve usability and consistency of cursor style between image-type + * `input` and others. + */ + +button, +html input[type="button"], /* 1 */ +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; /* 2 */ + cursor: pointer; /* 3 */ +} + +/** + * Re-set default cursor for disabled elements. + */ + +button[disabled], +html input[disabled] { + cursor: default; +} + +/** + * Remove inner padding and border in Firefox 4+. + */ + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; +} + +/** + * Address Firefox 4+ setting `line-height` on `input` using `!important` in + * the UA stylesheet. + */ + +input { + line-height: normal; +} + +/** + * It's recommended that you don't attempt to style these elements. + * Firefox's implementation doesn't respect box-sizing, padding, or width. + * + * 1. Address box sizing set to `content-box` in IE 8/9/10. + * 2. Remove excess padding in IE 8/9/10. + */ + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Fix the cursor style for Chrome's increment/decrement buttons. For certain + * `font-size` values of the `input`, it causes the cursor style of the + * decrement button to change from `default` to `text`. + */ + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Address `appearance` set to `searchfield` in Safari and Chrome. + * 2. Address `box-sizing` set to `border-box` in Safari and Chrome + * (include `-moz` to future-proof). + */ + +input[type="search"] { + -webkit-appearance: textfield; /* 1 */ + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; /* 2 */ + box-sizing: content-box; +} + +/** + * Remove inner padding and search cancel button in Safari and Chrome on OS X. + * Safari (but not Chrome) clips the cancel button when the search input has + * padding (and `textfield` appearance). + */ + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * Define consistent border, margin, and padding. + */ + +fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} + +/** + * 1. Correct `color` not being inherited in IE 8/9/10/11. + * 2. Remove padding so people aren't caught out if they zero out fieldsets. + */ + +legend { + border: 0; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Remove default vertical scrollbar in IE 8/9/10/11. + */ + +textarea { + overflow: auto; +} + +/** + * Don't inherit the `font-weight` (applied by a rule above). + * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. + */ + +optgroup { + font-weight: bold; +} + +/* Tables + ========================================================================== */ + +/** + * Remove most spacing between table cells. + */ + +table { + border-collapse: collapse; + border-spacing: 0; +} + +td, +th { + padding: 0; +} diff --git a/static/css/skeleton.css b/static/css/skeleton.css new file mode 100644 index 0000000..94c5fcd --- /dev/null +++ b/static/css/skeleton.css @@ -0,0 +1,719 @@ +/* +* Skeleton V2.0.4 +* Copyright 2014, Dave Gamache +* www.getskeleton.com +* Free to use under the MIT license. +* http://www.opensource.org/licenses/mit-license.php +* 12/29/2014 +* +* Altered by Alex Selimov, 2023 +*/ + + +/* Table of contents +–––––––––––––––––––––––––––––––––––––––––––––––––– +- Grid +- Base Styles +- Typography +- Links +- Buttons +- Forms +- Lists +- Code +- Tables +- Spacing +- Utilities +- Clearing +- Media Queries +*/ + + +/* Grid +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.container { + position: relative; + width: 100%; + margin: 0 auto; + padding: 0 20px; + box-sizing: border-box; } +.column, +.columns { + width: 100%; + float: left; + box-sizing: border-box; } + +/* For devices larger than 400px */ +@media (min-width: 450px) { + .container { + width: 85%; + padding: 0; } +} + +/* For devices larger than 550px */ +@media (min-width: 550px) { + .container { + width: 75%; + max-width: 1000px;} + .column, + + .columns { + margin-left: 4%; } + .column:first-child, + .columns:first-child { + margin-left: 0; } + + .one.column, + .one.columns { width: 4.66666666667%; } + .two.columns { width: 13.3333333333%; } + .three.columns { width: 22%; } + .four.columns { width: 30.6666666667%; } + .five.columns { width: 39.3333333333%; } + .six.columns { width: 48%; } + .seven.columns { width: 56.6666666667%; } + .eight.columns { width: 65.3333333333%; } + .nine.columns { width: 74.0%; } + .ten.columns { width: 82.6666666667%; } + .eleven.columns { width: 91.3333333333%; } + .twelve.columns { width: 100%; margin-left: 0; } + + .one-third.column { width: 30.6666666667%; } + .two-thirds.column { width: 65.3333333333%; } + + .one-half.column { width: 48%; } + + /* Offsets */ + .offset-by-one.column, + .offset-by-one.columns { margin-left: 8.66666666667%; } + .offset-by-two.column, + .offset-by-two.columns { margin-left: 17.3333333333%; } + .offset-by-three.column, + .offset-by-three.columns { margin-left: 26%; } + .offset-by-four.column, + .offset-by-four.columns { margin-left: 34.6666666667%; } + .offset-by-five.column, + .offset-by-five.columns { margin-left: 43.3333333333%; } + .offset-by-six.column, + .offset-by-six.columns { margin-left: 52%; } + .offset-by-seven.column, + .offset-by-seven.columns { margin-left: 60.6666666667%; } + .offset-by-eight.column, + .offset-by-eight.columns { margin-left: 69.3333333333%; } + .offset-by-nine.column, + .offset-by-nine.columns { margin-left: 78.0%; } + .offset-by-ten.column, + .offset-by-ten.columns { margin-left: 86.6666666667%; } + .offset-by-eleven.column, + .offset-by-eleven.columns { margin-left: 95.3333333333%; } + + .offset-by-one-third.column, + .offset-by-one-third.columns { margin-left: 34.6666666667%; } + .offset-by-two-thirds.column, + .offset-by-two-thirds.columns { margin-left: 69.3333333333%; } + + .offset-by-one-half.column, + .offset-by-one-half.columns { margin-left: 52%; } + +} + + +/* Base Styles +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* NOTE +html is set to 62.5% so that all the REM measurements throughout Skeleton +are based on 10px sizing. So basically 1.5rem = 15px :) */ +html { + font-size: 58%; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; } + + +body { + font-size: 1.8rem; + line-height: 1.618; + margin: auto; + padding: 13px; + color: #bdae93; + background: #282828 + } + +/* Typography +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +h1, h2, h3, h4, h5, h6 nav.primary .brand { + margin-top: 0; + margin-bottom: 2rem; + font-weight: 300; } +h1 { font-family: 'Arial', serif; font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem; color:#fbf1c7;} +h2 { font-family: 'Arial', serif; font-size: 3.0rem; line-height: 1.25; letter-spacing: -.1rem; } +h3 { font-family: 'Arial', serif; font-size: 2.4rem; line-height: 1.3; letter-spacing: -.1rem; } +h4 { font-family: 'Arial', serif; font-size: 2.0rem; line-height: 1.35; letter-spacing: -.08rem; } +nav.primary .brand{ font-family: 'Arial', serif; font-size: 1.5rem; line-height: 1.3; letter-spacing: -.1rem; } +h5 { font-family: 'Open Sans', serif; font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; } +h6 { font-family: 'Open Sans', serif; font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; } +.big_text { font-size: 5.0rem; line-height: 1.2; letter-spacing: -.1rem;} + + +/* Larger than phablet */ +@media (min-width: 550px) { + h1 { font-size: 5.0rem; } + h2 { font-size: 3.0rem; } + h3{ font-size: 2.6rem; } + h4 { font-size: 2.4rem; } + nav.primary .brand { font-size: 2.4rem; } + h5 { font-size: 2.0rem; } + h6 { font-size: 1.5rem; } + .big_text { font-size: 7.0rem; line-height: 1.2; letter-spacing: -.1rem;} +} + +p { + margin-top: 0; } + + +/* Links +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +a { + color: #1EAEDB; } +a:hover { + color: #0FA0CE; } + + +/* Buttons +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.button, +button, +input[type="submit"], +input[type="reset"], +input[type="button"] { + display: inline-block; + height: 38px; + padding: 0 15px; + color: #bdae93; + text-align: center; + font-size: 11px; + font-weight: 600; + line-height: 38px; + letter-spacing: .1rem; + text-transform: uppercase; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border-radius: 4px; + border: 2px solid #bdae93; + cursor: pointer; + box-sizing: border-box; } +.button:hover, +button:hover, +input[type="submit"]:hover, +input[type="reset"]:hover, +input[type="button"]:hover, +.button:focus, +button:focus, +input[type="submit"]:focus, +input[type="reset"]:focus, +input[type="button"]:focus { + color: #fbf1c7; + border-color: #fbf1c7; + outline: 0; } +.button.button-primary, +button.button-primary, +input[type="submit"].button-primary, +input[type="reset"].button-primary, +input[type="button"].button-primary { + color: #FFF; + background-color: #33C3F0; + border-color: #33c3f0; } +.button.button-primary:hover, +button.button-primary:hover, +input[type="submit"].button-primary:hover, +input[type="reset"].button-primary:hover, +input[type="button"].button-primary:hover, +.button.button-primary:focus, +button.button-primary:focus, +input[type="submit"].button-primary:focus, +input[type="reset"].button-primary:focus, +input[type="button"].button-primary:focus { + color: #FFF; + background-color: #1EAEDB; + border-color: #1EAEDB; } + + +/* Forms +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea, +select { + height: 38px; + padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */ + background-color: #fff; + border: 1px solid #D1D1D1; + border-radius: 4px; + box-shadow: none; + box-sizing: border-box; } +/* Removes awkward default styles on some inputs for iOS */ +input[type="email"], +input[type="number"], +input[type="search"], +input[type="text"], +input[type="tel"], +input[type="url"], +input[type="password"], +textarea { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } +textarea { + min-height: 65px; + padding-top: 6px; + padding-bottom: 6px; } +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + border: 1px solid #33C3F0; + outline: 0; } +label, +legend { + display: block; + margin-bottom: .5rem; + font-weight: 600; } +fieldset { + padding: 0; + border-width: 0; } +input[type="checkbox"], +input[type="radio"] { + display: inline; } +label > .label-body { + display: inline-block; + margin-left: .5rem; + font-weight: normal; } + + +/* Lists +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +ul { + list-style: circle inside; } +ol { + list-style: decimal inside; } +ol, ul { + padding-left: 0; + margin-top: 0; } +ul ul, +ul ol, +ol ol, +ol ul { + margin: 1.5rem 0 1.5rem 3rem; + font-size: 90%; } +li { + margin-bottom: 1rem; } + + +/* Code +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +code { + padding: .2rem .5rem; + margin: 0 .2rem; + font-size: 90%; + white-space: nowrap; + background: #F1F1F1; + border: 1px solid #E1E1E1; + border-radius: 4px; } +pre > code { + display: block; + padding: 1rem 1.5rem; + white-space: pre; } + + +/* Tables +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +th, +td { + padding: 12px 15px; + text-align: left; + border-bottom: 1px solid #E1E1E1; } +th:first-child, +td:first-child { + padding-left: 0; } +th:last-child, +td:last-child { + padding-right: 0; } + + +/* Spacing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +button, +.button { + margin-bottom: 1rem; } +input, +textarea, +select, +fieldset { + margin-bottom: 1.5rem; } +pre, +blockquote, +dl, +figure, +table, +p, +ul, +ol, +form { + margin-bottom: 2.5rem; } + + +/* Utilities +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +.u-full-width { + width: 100%; + max-width: + box-sizing: border-box; } +.u-max-full-width { + max-width: 100%; + box-sizing: border-box; } +.u-pull-right { + float: right; } +.u-pull-left { + float: left; } + + +/* Misc +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +hr { + margin-top: 1.5rem; + margin-bottom: 2.5rem; + border-width: 0; + border-top: 1px solid #a89984; } + + +/* Clearing +–––––––––––––––––––––––––––––––––––––––––––––––––– */ + +/* Self Clearing Goodness */ +.container:after, +.row:after, +.u-cf { + content: ""; + display: table; + clear: both; } + + +/* Media Queries +–––––––––––––––––––––––––––––––––––––––––––––––––– */ +/* +Note: The best way to structure the use of media queries is to create the queries +near the relevant code. For example, if you wanted to change the styles for buttons +on small devices, paste the mobile query code up in the buttons section and style it +there. +*/ + + +/* Larger than mobile */ +@media (min-width: 400px) {} + +/* Larger than phablet (also point when grid becomes active) */ +@media (min-width: 550px) {} + +/* Larger than tablet */ +@media (min-width: 750px) {} + +/* Larger than desktop */ +@media (min-width: 1000px) {} + +/* Larger than Desktop HD */ +@media (min-width: 1200px) {} + +/* + *Here are some custom user classes + */ + +img.linklogo{ + filter: brightness(0) saturate(100%) invert(81%) sepia(27%) saturate(238%) hue-rotate(360deg) brightness(82%) contrast(92%); + padding-left: 7px; + padding-right: 7px; + width:35px; + height:auto; +} + +img.linklogo:hover{ + filter: brightness(0) saturate(100%) invert(67%) sepia(8%) saturate(749%) hue-rotate(105deg) brightness(93%) contrast(87%); +} + +/* img links */ +a { + color: #458588; +} + a:hover{ + color: #83a598; + } +a img { +-moz-transition: all 0.3s; +-webkit-transition: all 0.3s; +transition: all 0.3s; +} + +a img:hover { +-webkit-transform: scale(1.04); +-moz-transform: scale(1.04); +-o-transform: scale(1.04); +-ms-transform: scale(1.04); +transform: scale(1.04); +} +/*primary navigation menu on desktop*/ +nav.primary { + display: flex; + align-items: center; + flex-wrap: wrap; + justify-content:space-between; + flex-direction: row; +} + +nav.primary li a { + display: flex; +} + +nav.primary .brand{ + font-size: 2em; + display: block; + padding 0 24px; + width: 30%; + text-decoration: none; + transition: all .2s ease-in-out + float: left; +} + +nav.primary .brand:hover{ + transform: scale(1.1) +} + +.brand-mobile{ + display: none; + width:50%; + height: auto; + font-size: 3.0rem; + transition: all .2s ease-in-out +} + +.brand-mobile:hover{ + transform: scale(1.1) +} + +nav.primary .item { + font-size: 2.4rem; + margin: 0px auto; + padding: 0; + list-style-type:none; + display: inline-block; + position: relative; + float: right; + color: #fbf1c7; +} + +nav.primary .item a { + display: inline-block; + line-height:49px; + color: #fbf1c7; + text-decoration: none; + padding: 0 14px; +} + +nav.primary .item a:hover{ + color: #b8bb26; +} + +.dropdown{ + float: left; + border: none +} + +button.dropbtn{ + font-size: 2.4rem; + border: none; + outline: none; + background-color: inherit; + margin: 0px auto; + color: inherit; + text-transform:initial; + padding: 0 14px; + font-weight:normal; +} + +button.dropbtn:hover{ + color: #b8bb26; +} +.dropdown-content{ + display:none; + position:absolute; + z-index:1; + min-width:175px; + font-size: 2.0rem; + background-color:#665c54; +} + +.dropdown-content a{ + float:none; + padding:12px 16px; + text-decoration: none; + display:block; + text-align: left; +} + +.dropdown:hover .dropdown-content{ + display: block; +} + +nav.primary .spacer{ + flex-grow: 1; +} + +nav.primary a.icon{ + display:none; +} + +/*Secondary navigation menu */ +nav.mobile{ + transition: left 0.4s ease; + position: fixed; + top: 0; + left: -50%; + width: 50%; + height: 100%; + background: #665c54; + z-index: 9999; +} + +nav.mobile a{ + color: #fbf1c7; + font-size: 2.4rem; + text-decoration: none; +} + +nav.mobile .mobile-item{ + margin: 20px 10px; +} + +.hamburger { + display: none; +} + +.bar { + display: block; + width: 25px; + height: 3px; + margin: 5px auto; + -webkit-transition: all 0.3s ease-in-out; + transition: all 0.3s ease-in-out; + background-color: #FFF; +} + +.bars{ + display : block; + position: absolute; + top: 20%; + left: 20%; +} + +.close{ + display: none; +} + +@media screen and (max-width: 768px) { + nav.primary { + display: none; + } + + nav.mobile.responsive { + left: 0; + } + .brand-mobile{ + text-decoration: none; + display:block; + position: relative; + width:70%; + height: auto; + } + .hamburger{ + display: block; + margin: 20px 0; + position: fixed; + top: 15px; + left: 45px; + height: 45px; + width: 45px; + text-align: center; + border-radius: 3px; + cursor: pointer; + transition: left 0.4s ease; + background-color: #696969; + z-index: 9999; + } + .hamburger.responsive{ + position: fixed; + top: 15px; + left: 55%; + height: 45px; + width: 45px; + text-align: center; + border-radius: 3px; + cursor: pointer; + transition: left 0.4s ease; + background-color: #ff6347; + z-index: 9999; + } + + .bars.responsive{ + display: none; + } + + .close.responsive{ + display: block; + color: #FFF; + position: absolute; + top: 4px; + left: 10px; + } + + nav.mobile .show{ + display: block; + } +} + +.caret { + width: 0; + height: 0; + display: inline; + border: 10px solid transparent; +} +.caret.down{ + border-top-color: black; +} + +.linklist{ + +} +.linklist h4{ + margin: 0px 0px; + color:#fbf1c7 +} +.linklist p{ + margin: 0px 0px; +} +.linklist a{ + text-decoration:none; + color:#bdae93; + font-size:2.0rem; + margin: 30px 0px; + display: block; +} + + +.linklist a:hover h4{ + text-decoration:underline; +} diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..213e434 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,94 @@ +/* + * Copyright 2013 Christophe-Marie Duquesne + * + * CSS for making a resume with pandoc. Inspired by moderncv. + * + * This CSS document is delivered to you under the CC BY-SA 3.0 License. + * https://creativecommons.org/licenses/by-sa/3.0/deed.en_US + */ + +/* Whole document */ +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + width: 800px; + margin: auto; + background: #FFFFFF; + padding: 10px 10px 10px 10px; +} + +/* +.title { + display: none; +} +*/ + +/* Title of the resume */ +h1 { + font-size: 42px; + color: #757575; + text-align:center; + margin-bottom:15px; +} + +/* Titles of categories */ +h2 { + color: #397249; +} +/* There is a bar just before each category */ +h2:before { + content: ""; + display: inline-block; + margin-right:1%; + width: 16%; + height: 10px; + background-color: #9CB770; +} + +/* Definitions */ +dt { + float: left; + clear: left; + width: 17%; + font-weight: bold; +} +dd { + margin-left: 17%; +} +p { + margin-top:0; + margin-bottom:7px; +} + +/* Blockquotes */ +blockquote { + text-align: center +} + +/* Links */ +a { + text-decoration: none; + color: #397249; +} +a:hover, a:active { + background-color: #397249; + color: #FFFFFF; + text-decoration: none; + text-shadow: 1px 1px 1px #333; +} + +/* Horizontal separators */ +hr { + color: #A6A6A6; +} + +figure[src$='#center'] +{ + display: block; + margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by + whatever floats your boat, but keep the + horizontal 'auto' for this to work */ + /* whatever else styles you fancy here */ +} + + + diff --git a/static/icons/amazon.svg b/static/icons/amazon.svg new file mode 100644 index 0000000..32047db --- /dev/null +++ b/static/icons/amazon.svg @@ -0,0 +1 @@ + diff --git a/static/icons/apple.svg b/static/icons/apple.svg new file mode 100644 index 0000000..d1c2233 --- /dev/null +++ b/static/icons/apple.svg @@ -0,0 +1 @@ + diff --git a/static/icons/bars.svg b/static/icons/bars.svg new file mode 100644 index 0000000..6e5941d --- /dev/null +++ b/static/icons/bars.svg @@ -0,0 +1 @@ + diff --git a/static/icons/bell.svg b/static/icons/bell.svg new file mode 100644 index 0000000..ea35572 --- /dev/null +++ b/static/icons/bell.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/blogger.svg b/static/icons/blogger.svg new file mode 100644 index 0000000..194dd9b --- /dev/null +++ b/static/icons/blogger.svg @@ -0,0 +1 @@ + diff --git a/static/icons/bomb.svg b/static/icons/bomb.svg new file mode 100644 index 0000000..2ac7dbb --- /dev/null +++ b/static/icons/bomb.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/bug.svg b/static/icons/bug.svg new file mode 100644 index 0000000..97cae6e --- /dev/null +++ b/static/icons/bug.svg @@ -0,0 +1 @@ + diff --git a/static/icons/check.svg b/static/icons/check.svg new file mode 100644 index 0000000..a6938bd --- /dev/null +++ b/static/icons/check.svg @@ -0,0 +1 @@ + diff --git a/static/icons/chevron-down.svg b/static/icons/chevron-down.svg new file mode 100644 index 0000000..9368d7f --- /dev/null +++ b/static/icons/chevron-down.svg @@ -0,0 +1,12 @@ + diff --git a/static/icons/circle-info.svg b/static/icons/circle-info.svg new file mode 100644 index 0000000..bd32225 --- /dev/null +++ b/static/icons/circle-info.svg @@ -0,0 +1 @@ + diff --git a/static/icons/code.svg b/static/icons/code.svg new file mode 100644 index 0000000..f9ee250 --- /dev/null +++ b/static/icons/code.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/codepen.svg b/static/icons/codepen.svg new file mode 100644 index 0000000..52ec58a --- /dev/null +++ b/static/icons/codepen.svg @@ -0,0 +1 @@ + diff --git a/static/icons/comment.svg b/static/icons/comment.svg new file mode 100644 index 0000000..2305041 --- /dev/null +++ b/static/icons/comment.svg @@ -0,0 +1 @@ + diff --git a/static/icons/dev.svg b/static/icons/dev.svg new file mode 100644 index 0000000..7311e84 --- /dev/null +++ b/static/icons/dev.svg @@ -0,0 +1 @@ + diff --git a/static/icons/discord.svg b/static/icons/discord.svg new file mode 100644 index 0000000..75f1fc7 --- /dev/null +++ b/static/icons/discord.svg @@ -0,0 +1 @@ + diff --git a/static/icons/discourse.svg b/static/icons/discourse.svg new file mode 100644 index 0000000..d217008 --- /dev/null +++ b/static/icons/discourse.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/docker.svg b/static/icons/docker.svg new file mode 100644 index 0000000..9a82fb0 --- /dev/null +++ b/static/icons/docker.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/download.svg b/static/icons/download.svg new file mode 100644 index 0000000..f1d5796 --- /dev/null +++ b/static/icons/download.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/dribbble.svg b/static/icons/dribbble.svg new file mode 100644 index 0000000..c2613fe --- /dev/null +++ b/static/icons/dribbble.svg @@ -0,0 +1 @@ + diff --git a/static/icons/edit.svg b/static/icons/edit.svg new file mode 100644 index 0000000..82a6035 --- /dev/null +++ b/static/icons/edit.svg @@ -0,0 +1 @@ + diff --git a/static/icons/email.svg b/static/icons/email.svg new file mode 100644 index 0000000..fa215c6 --- /dev/null +++ b/static/icons/email.svg @@ -0,0 +1 @@ + diff --git a/static/icons/envelope.svg b/static/icons/envelope.svg new file mode 100644 index 0000000..9285f23 --- /dev/null +++ b/static/icons/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/eye.svg b/static/icons/eye.svg new file mode 100644 index 0000000..c54e996 --- /dev/null +++ b/static/icons/eye.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/facebook.svg b/static/icons/facebook.svg new file mode 100644 index 0000000..1535831 --- /dev/null +++ b/static/icons/facebook.svg @@ -0,0 +1 @@ + diff --git a/static/icons/fire.svg b/static/icons/fire.svg new file mode 100644 index 0000000..a4d8f4f --- /dev/null +++ b/static/icons/fire.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/flickr.svg b/static/icons/flickr.svg new file mode 100644 index 0000000..fcd57c4 --- /dev/null +++ b/static/icons/flickr.svg @@ -0,0 +1 @@ + diff --git a/static/icons/fork.svg b/static/icons/fork.svg new file mode 100644 index 0000000..38b9e05 --- /dev/null +++ b/static/icons/fork.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/foursquare.svg b/static/icons/foursquare.svg new file mode 100644 index 0000000..74c28e6 --- /dev/null +++ b/static/icons/foursquare.svg @@ -0,0 +1 @@ + diff --git a/static/icons/ghost.svg b/static/icons/ghost.svg new file mode 100644 index 0000000..1c1b841 --- /dev/null +++ b/static/icons/ghost.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/github.svg b/static/icons/github.svg new file mode 100644 index 0000000..ed8c470 --- /dev/null +++ b/static/icons/github.svg @@ -0,0 +1 @@ + diff --git a/static/icons/gitlab.svg b/static/icons/gitlab.svg new file mode 100644 index 0000000..998e306 --- /dev/null +++ b/static/icons/gitlab.svg @@ -0,0 +1 @@ + diff --git a/static/icons/goodreads.svg b/static/icons/goodreads.svg new file mode 100644 index 0000000..0960d13 --- /dev/null +++ b/static/icons/goodreads.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/google.svg b/static/icons/google.svg new file mode 100644 index 0000000..7e10132 --- /dev/null +++ b/static/icons/google.svg @@ -0,0 +1 @@ + diff --git a/static/icons/hackernews.svg b/static/icons/hackernews.svg new file mode 100644 index 0000000..67a1e74 --- /dev/null +++ b/static/icons/hackernews.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/hashnode.svg b/static/icons/hashnode.svg new file mode 100644 index 0000000..6ebe2db --- /dev/null +++ b/static/icons/hashnode.svg @@ -0,0 +1 @@ + diff --git a/static/icons/heart-empty.svg b/static/icons/heart-empty.svg new file mode 100644 index 0000000..b9476ef --- /dev/null +++ b/static/icons/heart-empty.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/heart.svg b/static/icons/heart.svg new file mode 100644 index 0000000..ed7e8c8 --- /dev/null +++ b/static/icons/heart.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/image.svg b/static/icons/image.svg new file mode 100644 index 0000000..507f65e --- /dev/null +++ b/static/icons/image.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/instagram.svg b/static/icons/instagram.svg new file mode 100644 index 0000000..3cd3d33 --- /dev/null +++ b/static/icons/instagram.svg @@ -0,0 +1 @@ + diff --git a/static/icons/keybase.svg b/static/icons/keybase.svg new file mode 100644 index 0000000..998110e --- /dev/null +++ b/static/icons/keybase.svg @@ -0,0 +1 @@ + diff --git a/static/icons/kickstarter.svg b/static/icons/kickstarter.svg new file mode 100644 index 0000000..4496981 --- /dev/null +++ b/static/icons/kickstarter.svg @@ -0,0 +1 @@ + diff --git a/static/icons/ko-fi.svg b/static/icons/ko-fi.svg new file mode 100644 index 0000000..c91ce51 --- /dev/null +++ b/static/icons/ko-fi.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lastfm.svg b/static/icons/lastfm.svg new file mode 100644 index 0000000..2b53341 --- /dev/null +++ b/static/icons/lastfm.svg @@ -0,0 +1 @@ + diff --git a/static/icons/lightbulb.svg b/static/icons/lightbulb.svg new file mode 100644 index 0000000..5ffc710 --- /dev/null +++ b/static/icons/lightbulb.svg @@ -0,0 +1 @@ + diff --git a/static/icons/link.svg b/static/icons/link.svg new file mode 100644 index 0000000..eb283c2 --- /dev/null +++ b/static/icons/link.svg @@ -0,0 +1 @@ + diff --git a/static/icons/linkedin.svg b/static/icons/linkedin.svg new file mode 100644 index 0000000..4e3948b --- /dev/null +++ b/static/icons/linkedin.svg @@ -0,0 +1 @@ + diff --git a/static/icons/list.svg b/static/icons/list.svg new file mode 100644 index 0000000..f7a7df4 --- /dev/null +++ b/static/icons/list.svg @@ -0,0 +1 @@ + diff --git a/static/icons/location-dot.svg b/static/icons/location-dot.svg new file mode 100644 index 0000000..764a4b9 --- /dev/null +++ b/static/icons/location-dot.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/lock.svg b/static/icons/lock.svg new file mode 100644 index 0000000..e0f2ee9 --- /dev/null +++ b/static/icons/lock.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/mastodon.svg b/static/icons/mastodon.svg new file mode 100644 index 0000000..2c9db56 --- /dev/null +++ b/static/icons/mastodon.svg @@ -0,0 +1 @@ + diff --git a/static/icons/medium.svg b/static/icons/medium.svg new file mode 100644 index 0000000..07d095d --- /dev/null +++ b/static/icons/medium.svg @@ -0,0 +1 @@ + diff --git a/static/icons/microsoft.svg b/static/icons/microsoft.svg new file mode 100644 index 0000000..1bdb0c2 --- /dev/null +++ b/static/icons/microsoft.svg @@ -0,0 +1 @@ + diff --git a/static/icons/moon.svg b/static/icons/moon.svg new file mode 100644 index 0000000..8356307 --- /dev/null +++ b/static/icons/moon.svg @@ -0,0 +1 @@ + diff --git a/static/icons/mug-hot.svg b/static/icons/mug-hot.svg new file mode 100644 index 0000000..30a69cc --- /dev/null +++ b/static/icons/mug-hot.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/music.svg b/static/icons/music.svg new file mode 100644 index 0000000..cdf3124 --- /dev/null +++ b/static/icons/music.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/orcid.svg b/static/icons/orcid.svg new file mode 100644 index 0000000..b7f1b25 --- /dev/null +++ b/static/icons/orcid.svg @@ -0,0 +1 @@ + diff --git a/static/icons/patreon.svg b/static/icons/patreon.svg new file mode 100644 index 0000000..bd2e994 --- /dev/null +++ b/static/icons/patreon.svg @@ -0,0 +1 @@ + diff --git a/static/icons/paypal.svg b/static/icons/paypal.svg new file mode 100644 index 0000000..889ed3b --- /dev/null +++ b/static/icons/paypal.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/pencil.svg b/static/icons/pencil.svg new file mode 100644 index 0000000..29bd525 --- /dev/null +++ b/static/icons/pencil.svg @@ -0,0 +1 @@ + diff --git a/static/icons/pgpkey.svg b/static/icons/pgpkey.svg new file mode 100644 index 0000000..4adaeb4 --- /dev/null +++ b/static/icons/pgpkey.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/phone.svg b/static/icons/phone.svg new file mode 100644 index 0000000..fb8ebdd --- /dev/null +++ b/static/icons/phone.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/pinterest.svg b/static/icons/pinterest.svg new file mode 100644 index 0000000..386481c --- /dev/null +++ b/static/icons/pinterest.svg @@ -0,0 +1 @@ + diff --git a/static/icons/poo.svg b/static/icons/poo.svg new file mode 100644 index 0000000..5489fb4 --- /dev/null +++ b/static/icons/poo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/reddit.svg b/static/icons/reddit.svg new file mode 100644 index 0000000..bb55eb5 --- /dev/null +++ b/static/icons/reddit.svg @@ -0,0 +1 @@ + diff --git a/static/icons/researchgate.svg b/static/icons/researchgate.svg new file mode 100644 index 0000000..ad176db --- /dev/null +++ b/static/icons/researchgate.svg @@ -0,0 +1 @@ + diff --git a/static/icons/rss-square.svg b/static/icons/rss-square.svg new file mode 100644 index 0000000..d074561 --- /dev/null +++ b/static/icons/rss-square.svg @@ -0,0 +1 @@ + diff --git a/static/icons/rss.svg b/static/icons/rss.svg new file mode 100644 index 0000000..a4f1848 --- /dev/null +++ b/static/icons/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/search.svg b/static/icons/search.svg new file mode 100644 index 0000000..15fe892 --- /dev/null +++ b/static/icons/search.svg @@ -0,0 +1 @@ + diff --git a/static/icons/shield.svg b/static/icons/shield.svg new file mode 100644 index 0000000..955806a --- /dev/null +++ b/static/icons/shield.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/skull-crossbones.svg b/static/icons/skull-crossbones.svg new file mode 100644 index 0000000..4e19f6e --- /dev/null +++ b/static/icons/skull-crossbones.svg @@ -0,0 +1 @@ + diff --git a/static/icons/slack.svg b/static/icons/slack.svg new file mode 100644 index 0000000..69909d8 --- /dev/null +++ b/static/icons/slack.svg @@ -0,0 +1 @@ + diff --git a/static/icons/snapchat.svg b/static/icons/snapchat.svg new file mode 100644 index 0000000..b6efeef --- /dev/null +++ b/static/icons/snapchat.svg @@ -0,0 +1 @@ + diff --git a/static/icons/soundcloud.svg b/static/icons/soundcloud.svg new file mode 100644 index 0000000..301c3d1 --- /dev/null +++ b/static/icons/soundcloud.svg @@ -0,0 +1 @@ + diff --git a/static/icons/stack-overflow.svg b/static/icons/stack-overflow.svg new file mode 100644 index 0000000..bba4159 --- /dev/null +++ b/static/icons/stack-overflow.svg @@ -0,0 +1 @@ + diff --git a/static/icons/star.svg b/static/icons/star.svg new file mode 100644 index 0000000..7b974c4 --- /dev/null +++ b/static/icons/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/icons/steam.svg b/static/icons/steam.svg new file mode 100644 index 0000000..6efd1fd --- /dev/null +++ b/static/icons/steam.svg @@ -0,0 +1 @@ + diff --git a/static/icons/stripe.svg b/static/icons/stripe.svg new file mode 100644 index 0000000..1fc477d --- /dev/null +++ b/static/icons/stripe.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/sun.svg b/static/icons/sun.svg new file mode 100644 index 0000000..34a57ec --- /dev/null +++ b/static/icons/sun.svg @@ -0,0 +1 @@ + diff --git a/static/icons/tag.svg b/static/icons/tag.svg new file mode 100644 index 0000000..c78e65b --- /dev/null +++ b/static/icons/tag.svg @@ -0,0 +1 @@ + diff --git a/static/icons/telegram.svg b/static/icons/telegram.svg new file mode 100644 index 0000000..4101aef --- /dev/null +++ b/static/icons/telegram.svg @@ -0,0 +1 @@ + diff --git a/static/icons/tiktok.svg b/static/icons/tiktok.svg new file mode 100644 index 0000000..792a850 --- /dev/null +++ b/static/icons/tiktok.svg @@ -0,0 +1 @@ + diff --git a/static/icons/triangle-exclamation.svg b/static/icons/triangle-exclamation.svg new file mode 100644 index 0000000..f501ce9 --- /dev/null +++ b/static/icons/triangle-exclamation.svg @@ -0,0 +1 @@ + diff --git a/static/icons/tumblr.svg b/static/icons/tumblr.svg new file mode 100644 index 0000000..1457d68 --- /dev/null +++ b/static/icons/tumblr.svg @@ -0,0 +1 @@ + diff --git a/static/icons/twitch.svg b/static/icons/twitch.svg new file mode 100644 index 0000000..a35fa55 --- /dev/null +++ b/static/icons/twitch.svg @@ -0,0 +1 @@ + diff --git a/static/icons/twitter.svg b/static/icons/twitter.svg new file mode 100644 index 0000000..3ab4c1c --- /dev/null +++ b/static/icons/twitter.svg @@ -0,0 +1 @@ + diff --git a/static/icons/wand-magic-sparkles.svg b/static/icons/wand-magic-sparkles.svg new file mode 100644 index 0000000..9655689 --- /dev/null +++ b/static/icons/wand-magic-sparkles.svg @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/static/icons/whatsapp.svg b/static/icons/whatsapp.svg new file mode 100644 index 0000000..c1df966 --- /dev/null +++ b/static/icons/whatsapp.svg @@ -0,0 +1 @@ + diff --git a/static/icons/xmark.svg b/static/icons/xmark.svg new file mode 100644 index 0000000..a4c5121 --- /dev/null +++ b/static/icons/xmark.svg @@ -0,0 +1 @@ + diff --git a/static/icons/youtube.svg b/static/icons/youtube.svg new file mode 100644 index 0000000..3fa4dad --- /dev/null +++ b/static/icons/youtube.svg @@ -0,0 +1 @@ + diff --git a/static/js/func.js b/static/js/func.js new file mode 100644 index 0000000..344b21c --- /dev/null +++ b/static/js/func.js @@ -0,0 +1,59 @@ +/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */ +function myFunction() { + var x = document.getElementById("Nav"); + if (x.className === "primary") { + x.className += " responsive"; + } else { + x.className = "primary"; + } + var x = document.getElementById("Ham"); + if (x.className === "hamburger") { + x.className += " responsive"; + } else { + x.className = "hamburger"; + } + + var children = x.children; + if (children[0].className === "bars") { + children[0].className += " responsive"; + } else { + children[0].className = "bars"; + } + if (children[1].className === "close") { + children[1].className += " responsive"; + } else { + children[1].className = "close"; + } + + var x = document.getElementById("Navmobile"); + if (x.className === "mobile") { + x.className += " responsive"; + } else { + x.className = "mobile"; + } + +} + +function unshow_all(id){ + var x = document.getElementById("About"); + x.className = ""; + var x = document.getElementById("Ministries"); + x.className = ""; + var x = document.getElementById("Give"); + x.className = ""; + var x = document.getElementById("Resources"); + x.className = ""; +} +function show(id){ + var x = document.getElementById(id); + if(x.className === "show"){ + var needshow = 0; + } + else{ + var needshow= 1; + } + unshow_all(id); + if ( needshow === 1 ){ + x.className = "show"; + } +} diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..51c3fd5 --- /dev/null +++ b/theme.toml @@ -0,0 +1,21 @@ +# theme.toml template for a Hugo theme +# See https://github.com/gohugoio/hugoThemes#themetoml for an example + +name = "Personal" +license = "MIT" +licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE" +description = "" +homepage = "http://example.com/" +tags = [] +features = [] +min_version = "0.41.0" + +[author] + name = "" + homepage = "" + +# If porting an existing theme +[original] + name = "" + homepage = "" + repo = ""