├── .forestry ├── front_matter │ └── templates │ │ ├── new-page.yml │ │ └── post.yml └── settings.yml ├── .gitignore ├── .nova └── Configuration.json ├── README.md ├── TODO ├── TODO.taskpaper ├── ebooks ├── README.md ├── cover.jpg └── wisdom-1747190012.epub ├── i ├── MANN-angry-2500.jpg ├── MANN-angry.jpg ├── cover.jpg ├── so_angry_-_960.jpg ├── toot-advice.jpg ├── toot-advice.png └── tweet-advice-solution.jpg ├── inspirado.md ├── meh ├── archetypes │ └── default.md ├── assets │ ├── js │ │ └── script.js │ ├── plugins │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.js │ │ ├── jQuery │ │ │ └── jquery.slim.min.js │ │ └── slick │ │ │ ├── slick.css │ │ │ └── slick.min.js │ └── scss │ │ ├── _buttons.scss │ │ ├── _common.scss │ │ ├── _custom.scss │ │ ├── _mixins.scss │ │ ├── _typography.scss │ │ ├── style.scss │ │ └── templates │ │ ├── _main.scss │ │ └── _navigation.scss ├── config.toml ├── exampleSite │ ├── config │ │ └── _default │ │ │ ├── config.toml │ │ │ ├── languages.toml │ │ │ ├── menus.de.toml │ │ │ ├── menus.en.toml │ │ │ └── params.toml │ ├── content │ │ ├── deutsch │ │ │ ├── _index.md │ │ │ ├── blog │ │ │ │ ├── _index.md │ │ │ │ └── post-1.md │ │ │ ├── contact │ │ │ │ └── _index.md │ │ │ ├── faq │ │ │ │ └── _index.md │ │ │ ├── pricing │ │ │ │ └── _index.md │ │ │ ├── privacy-policy │ │ │ │ └── _index.md │ │ │ └── terms-conditions │ │ │ │ └── _index.md │ │ └── english │ │ │ ├── _index.md │ │ │ ├── blog │ │ │ ├── _index.md │ │ │ ├── post-1.md │ │ │ ├── post-2.md │ │ │ ├── post-3.md │ │ │ ├── post-4.md │ │ │ ├── post-5.md │ │ │ └── post-6.md │ │ │ ├── contact │ │ │ └── _index.md │ │ │ ├── faq │ │ │ └── _index.md │ │ │ ├── pricing │ │ │ └── _index.md │ │ │ ├── privacy-policy │ │ │ └── _index.md │ │ │ └── terms-conditions │ │ │ └── _index.md │ ├── netlify.toml │ └── static │ │ └── images │ │ ├── banner-art.svg │ │ ├── blog │ │ ├── post-1.jpg │ │ ├── post-2.jpg │ │ ├── post-3.jpg │ │ ├── post-4.jpg │ │ ├── post-5.jpg │ │ └── post-6.jpg │ │ ├── cta.svg │ │ ├── logo.png │ │ ├── screenshot.svg │ │ ├── service-1.png │ │ ├── service-2.png │ │ └── service-3.png ├── i18n │ ├── de.toml │ └── en.toml ├── images │ ├── screenshot.png │ └── tn.png ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── contact │ │ └── list.html │ ├── faq │ │ └── list.html │ ├── index.html │ ├── partials │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── page-header.html │ │ ├── preloader.html │ │ ├── script.html │ │ └── style.html │ ├── pricing │ │ └── list.html │ └── shortcodes │ │ └── faq.html ├── netlify.toml └── theme.toml ├── quotes.md ├── touch ├── MBP 2022-01-10_13-40-56.md ├── MBP 2022-01-10_16-10-55.md ├── MacMini 2022-01-14_15-40-48.md ├── mac mini 2022-01-10_15-31-05.md ├── mac mini 2022-01-12_13-29-22.md └── tester.md └── wisdom.md /.forestry/front_matter/templates/new-page.yml: -------------------------------------------------------------------------------- 1 | --- 2 | label: New Page 3 | hide_body: false 4 | fields: 5 | - type: text 6 | name: title 7 | label: title 8 | - type: text 9 | name: subtitle 10 | label: subtitle 11 | - type: text 12 | name: description 13 | label: meta description 14 | -------------------------------------------------------------------------------- /.forestry/front_matter/templates/post.yml: -------------------------------------------------------------------------------- 1 | --- 2 | label: Post 3 | hide_body: false 4 | fields: 5 | - type: text 6 | name: title 7 | label: title 8 | - type: datetime 9 | name: date 10 | label: date 11 | - type: file 12 | name: image 13 | label: image 14 | - type: text 15 | name: type 16 | label: type 17 | description: 'Available type: featured/regular' 18 | - type: text 19 | name: description 20 | label: meta description 21 | -------------------------------------------------------------------------------- /.forestry/settings.yml: -------------------------------------------------------------------------------- 1 | --- 2 | new_page_extension: md 3 | auto_deploy: false 4 | admin_path: '' 5 | webhook_url: 6 | sections: 7 | - type: heading 8 | label: Homepage 9 | - type: document 10 | path: exampleSite/content/english/_index.md 11 | label: Homepage (en) 12 | - type: document 13 | path: exampleSite/content/deutsch/_index.md 14 | label: Homepage (de) 15 | - type: heading 16 | label: Blog 17 | - type: document 18 | path: exampleSite/content/english/blog/_index.md 19 | label: Blog Page (en) 20 | - type: document 21 | path: exampleSite/content/deutsch/blog/_index.md 22 | label: Blog Page (de) 23 | - type: directory 24 | path: exampleSite/content/english/blog 25 | label: Blog Post (en) 26 | create: documents 27 | match: "**/*" 28 | exclude: _index.md 29 | templates: 30 | - post 31 | - type: directory 32 | path: exampleSite/content/deutsch/blog 33 | label: Blog Post (de) 34 | create: documents 35 | match: "**/*" 36 | exclude: _index.md 37 | templates: 38 | - post 39 | - type: heading 40 | label: Others Page 41 | - type: document 42 | path: exampleSite/content/english/contact/_index.md 43 | label: Contact (en) 44 | - type: document 45 | path: exampleSite/content/deutsch/contact/_index.md 46 | label: Contact (de) 47 | - type: document 48 | path: exampleSite/content/english/pricing/_index.md 49 | label: Pricing (en) 50 | - type: document 51 | path: exampleSite/content/deutsch/pricing/_index.md 52 | label: Pricing (de) 53 | - type: document 54 | path: exampleSite/content/english/faq/_index.md 55 | label: FAQ (en) 56 | - type: document 57 | path: exampleSite/content/deutsch/faq/_index.md 58 | label: FAQ (de) 59 | - type: heading 60 | label: All Pages 61 | - type: directory 62 | path: exampleSite/content 63 | label: All Pages 64 | create: all 65 | match: "**/*" 66 | exclude: _index.md 67 | templates: 68 | - new-page 69 | - type: heading 70 | label: Configuration 71 | - type: document 72 | path: exampleSite/config/_default/config.toml 73 | label: Configuration 74 | - type: document 75 | path: exampleSite/config/_default/params.toml 76 | label: Parameters 77 | - type: document 78 | path: config.toml 79 | label: Variables & Plugins 80 | match: "**/*" 81 | - type: document 82 | path: exampleSite/config/_default/languages.toml 83 | label: Languages 84 | - type: document 85 | path: exampleSite/config/_default/menus.en.toml 86 | label: Menu (en) 87 | - type: document 88 | path: exampleSite/config/_default/menus.de.toml 89 | label: Menu (de) 90 | match: "**/*" 91 | upload_dir: exampleSite/static/images 92 | public_path: "/images" 93 | front_matter_path: '' 94 | use_front_matter_path: false 95 | file_template: ":filename:" 96 | build: 97 | preview_env: 98 | - HUGO_ENV=staging 99 | - HUGO_VERSION=0.58.2 100 | preview_output_directory: public 101 | preview_docker_image: forestryio/hugo:latest 102 | mount_path: "/srv" 103 | working_dir: "/srv" 104 | instant_preview_command: hugo server -D -E -F --port 8080 --bind 0.0.0.0 --renderToDisk 105 | -d public 106 | version: 0.58.2 107 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | .DS_Store 3 | .dist 4 | .tmp 5 | .sass-cache 6 | npm-debug.log 7 | node_modules 8 | builds 9 | package-lock.json 10 | public 11 | resources 12 | .codegpt -------------------------------------------------------------------------------- /.nova/Configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.default_syntax" : "markdown", 3 | "workspace.color" : 8, 4 | "workspace.name" : "wisdom" 5 | } 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Merlin's Wisdom Project 2 | 3 | Or: “*Everybody likes being given a glass of water*.” 4 | 5 | By Merlin Mann. 6 | 7 | It's only advice for you because it **had** to be advice for me. 8 | 9 | ([Link to this project](http://wisdom.limo)) 10 | 11 | ---- 12 | 13 | On to [**the Wisdom »**](http://wisdom.limo) 14 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | 2 | Todo: 3 | ☐ Item line 3 4 | 5 | Hack: 6 | - foo 7 | - bar 8 | Foo: 9 | - foobar @office 10 | - barbaz @house 11 | -------------------------------------------------------------------------------- /TODO.taskpaper: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TODO Later: 5 | - pick a good emoji for hashtags etc. 6 | People love emoji 7 | - serial number and IDs per wisdom 8 | - way for me to manually reorder 9 | - needs to maintain order so "related" works 10 | - what do I call an individual ““wisdom?"" 11 | - add tags per wisdom 12 | - collect and export as `epub`, `mobi` or similar 13 | - the whole goddammned project needs a better goddammned name 14 | - get the project a UNIQUE domain name 15 | - prettier icon for `HELLO` tag 16 | 17 | 18 | 19 | Via Siracusa 2021-12-28: 20 | per RecDiffs e173 21 | - make it a git repo @done(2022-01-03) 22 | - pick a policy on attribution 23 | - prune as well as grow 24 | "consolidation pass" -------------------------------------------------------------------------------- /ebooks/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | This is the latest version of the document exported from .md via Pandoc. -------------------------------------------------------------------------------- /ebooks/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/ebooks/cover.jpg -------------------------------------------------------------------------------- /ebooks/wisdom-1747190012.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/ebooks/wisdom-1747190012.epub -------------------------------------------------------------------------------- /i/MANN-angry-2500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/i/MANN-angry-2500.jpg -------------------------------------------------------------------------------- /i/MANN-angry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/i/MANN-angry.jpg -------------------------------------------------------------------------------- /i/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/i/cover.jpg -------------------------------------------------------------------------------- /i/so_angry_-_960.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/i/so_angry_-_960.jpg -------------------------------------------------------------------------------- /i/toot-advice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/i/toot-advice.jpg -------------------------------------------------------------------------------- /i/toot-advice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/i/toot-advice.png -------------------------------------------------------------------------------- /i/tweet-advice-solution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/i/tweet-advice-solution.jpg -------------------------------------------------------------------------------- /inspirado.md: -------------------------------------------------------------------------------- 1 | # Inspirado 2 | 3 | 4 | Boyles, Denis, et al. *The Modern Man's Guide to Life*. 1987. 5 | 6 | Hugo, Richard. *The Triggering Town: Lectures and Essays on Poetry and Writing*. W.W. Norton, 1979. 7 | 8 | King, Stephen. *On Writing: A Memoir of the Craft*. Scribner, 2000. 9 | 10 | Parker, Tom. *Rules of Thumb*. Houghton Mifflin, 1983. 11 | 12 | Strunk, William, Jr., and E.B. White. *The Elements of Style*. 1959. 13 | 14 | Vonnegut, Kurt. *Slaughterhouse-Five, or The Children's Crusade: A Duty-Dance with Death*. 1969. 15 | 16 | Wallechinsky, David, et al. *The Book of Lists*. 1977. 17 | 18 | Walsh, Peter. *It's All Too Much: An Easy Plan for Living a Richer Life with Less Stuff*. Free Press, 2006. 19 | 20 | Watts, Alan W. *The Wisdom of Insecurity: A Message for an Age of Anxiety*. 1951. 21 | 22 | -------------------------------------------------------------------------------- /meh/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /meh/assets/js/script.js: -------------------------------------------------------------------------------- 1 | // Preloader js 2 | $(window).on('load', function () { 3 | $('.preloader').addClass('d-none'); 4 | }); 5 | 6 | (function($) { 7 | 'use strict'; 8 | 9 | //slider 10 | $('.slider').not('.slick-initialized').slick({ 11 | slidesToShow: 1, 12 | slidesToScroll: 1, 13 | autoplay: true, 14 | dots: true, 15 | arrows: false 16 | }); 17 | 18 | })(jQuery); -------------------------------------------------------------------------------- /meh/assets/plugins/slick/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | margin-left: auto; 59 | margin-right: auto; 60 | } 61 | .slick-track:before, 62 | .slick-track:after 63 | { 64 | display: table; 65 | 66 | content: ''; 67 | } 68 | .slick-track:after 69 | { 70 | clear: both; 71 | } 72 | .slick-loading .slick-track 73 | { 74 | visibility: hidden; 75 | } 76 | 77 | .slick-slide 78 | { 79 | display: none; 80 | float: left; 81 | 82 | height: 100%; 83 | min-height: 1px; 84 | } 85 | [dir='rtl'] .slick-slide 86 | { 87 | float: right; 88 | } 89 | .slick-slide img 90 | { 91 | display: block; 92 | } 93 | .slick-slide.slick-loading img 94 | { 95 | display: none; 96 | } 97 | .slick-slide.dragging img 98 | { 99 | pointer-events: none; 100 | } 101 | .slick-initialized .slick-slide 102 | { 103 | display: block; 104 | } 105 | .slick-loading .slick-slide 106 | { 107 | visibility: hidden; 108 | } 109 | .slick-vertical .slick-slide 110 | { 111 | display: block; 112 | 113 | height: auto; 114 | 115 | border: 1px solid transparent; 116 | } 117 | .slick-arrow.slick-hidden { 118 | display: none; 119 | } 120 | -------------------------------------------------------------------------------- /meh/assets/scss/_buttons.scss: -------------------------------------------------------------------------------- 1 | /* Button style */ 2 | .btn { 3 | font-size: 16px; 4 | font-family: $primary-font; 5 | font-weight: 600; 6 | text-transform: capitalize; 7 | padding: 15px 30px; 8 | border-radius: 30px; 9 | border: 0; 10 | position: relative; 11 | z-index: 1; 12 | transition: .2s ease; 13 | white-space: nowrap; 14 | 15 | &::before { 16 | position: absolute; 17 | content: ""; 18 | height: 100%; 19 | width: 100%; 20 | top: 50%; 21 | left: 50%; 22 | transform: translate(-50%, -50%); 23 | z-index: -1; 24 | border-radius: inherit; 25 | transition: inherit; 26 | background-color: inherit; 27 | border: 1px solid transparent; 28 | } 29 | 30 | &:hover, 31 | &:active, 32 | &:focus { 33 | outline: 0; 34 | @extend .shadow; 35 | 36 | &::before { 37 | height: 110%; 38 | width: 110%; 39 | } 40 | } 41 | 42 | &-sm { 43 | padding: 12px 30px; 44 | font-size: 15px; 45 | } 46 | } 47 | 48 | .btn-primary { 49 | background-color: $primary-color; 50 | color: $white; 51 | border-color: $primary-color; 52 | 53 | &:active, 54 | &:hover, 55 | &.focus, 56 | &.active { 57 | background-color: $primary-color !important; 58 | border-color: $primary-color !important; 59 | } 60 | } 61 | 62 | .btn-outline-primary { 63 | background-color: transparent; 64 | color: $text-color-dark; 65 | border-color: transparent; 66 | 67 | &:active, 68 | &:hover, 69 | &.focus, 70 | &.active { 71 | background-color: transparent !important; 72 | border-color: $primary-color !important; 73 | color: $primary-color; 74 | } 75 | &::before{ 76 | border-color: $primary-color; 77 | } 78 | } 79 | 80 | .btn-link { 81 | color: $primary-color; 82 | 83 | i, 84 | svg { 85 | font-size: 12px; 86 | margin-left: 5px; 87 | margin-bottom: 1px; 88 | transition: .2s ease; 89 | } 90 | 91 | &:active, 92 | &:hover, 93 | &.focus, 94 | &.active { 95 | color: $primary-color; 96 | text-decoration: none; 97 | 98 | i, 99 | svg { 100 | margin-left: 10px; 101 | } 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /meh/assets/scss/_common.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: $body-color; 3 | overflow-x: hidden; 4 | } 5 | 6 | ::selection { 7 | background-color:darken($color: $primary-color, $amount: 10); 8 | color: $white; 9 | } 10 | 11 | body::-webkit-scrollbar { 12 | width: .5rem; 13 | } 14 | 15 | body::-webkit-scrollbar-track { 16 | box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); 17 | } 18 | 19 | body::-webkit-scrollbar-thumb { 20 | background-color: $primary-color; 21 | outline: 2px solid #fff; 22 | } 23 | 24 | 25 | /* preloader */ 26 | 27 | .preloader { 28 | position: fixed; 29 | top: 0; 30 | left: 0; 31 | right: 0; 32 | bottom: 0; 33 | background-color: #fff; 34 | z-index: 9999; 35 | display: flex; 36 | align-items: center; 37 | justify-content: center; 38 | } 39 | 40 | ol, 41 | ul { 42 | margin: 0px; 43 | } 44 | 45 | img { 46 | vertical-align: middle; 47 | border: 0; 48 | } 49 | 50 | a, 51 | a:hover, 52 | a:focus { 53 | text-decoration: none; 54 | } 55 | 56 | a, 57 | button, 58 | select { 59 | cursor: pointer; 60 | transition: .2s ease; 61 | 62 | &:focus { 63 | outline: 0; 64 | } 65 | } 66 | 67 | a:hover { 68 | color: $primary-color; 69 | } 70 | 71 | .slick-slide { 72 | outline: 0; 73 | } 74 | 75 | .section { 76 | padding-top: 70px; 77 | padding-bottom: 70px; 78 | 79 | &-title { 80 | margin-bottom: 30px; 81 | } 82 | } 83 | 84 | .bg-cover { 85 | background-size: cover; 86 | background-position: center center; 87 | background-repeat: no-repeat; 88 | } 89 | 90 | .border-default { 91 | border-color: $border-color !important; 92 | } 93 | 94 | /* overlay */ 95 | 96 | .overlay { 97 | position: relative; 98 | 99 | &::before { 100 | position: absolute; 101 | content: ''; 102 | height: 100%; 103 | width: 100%; 104 | top: 0; 105 | left: 0; 106 | background-color: $black; 107 | opacity: .5; 108 | } 109 | } 110 | 111 | .bg-primary { 112 | background-color: $primary-color !important; 113 | } 114 | 115 | .bg-light { 116 | background-color: $light !important; 117 | } 118 | 119 | .text-primary { 120 | color: $primary-color !important; 121 | } 122 | 123 | .rounded-lg{ 124 | border-radius: 10px !important; 125 | } 126 | 127 | .shadow{ 128 | box-shadow: 0 12px 24px -6px rgba(45,67,121,.10) !important; 129 | } 130 | 131 | // form control 132 | 133 | .form-control { 134 | &:focus { 135 | outline: 0; 136 | border-color: $primary-color; 137 | box-shadow: none; 138 | } 139 | 140 | &::placeholder { 141 | color: $text-color; 142 | } 143 | } 144 | 145 | textarea.form-control { 146 | height: 100px !important; 147 | } 148 | 149 | .list-unstyled{ 150 | li{ 151 | margin-bottom: 10px; 152 | } 153 | } 154 | 155 | .check-mark{ 156 | position: relative; 157 | padding-left: 0px; 158 | &::before{ 159 | position: absolute; 160 | content: "\f058"; 161 | color: $primary-color; 162 | font-size: 25px; 163 | font-family: $icon-font; 164 | font-weight: 900; 165 | left: -30px; 166 | top: 3px; 167 | } 168 | svg{ 169 | position: absolute; 170 | color: $primary-color; 171 | font-size: 25px; 172 | left: -30px; 173 | top: 3px; 174 | } 175 | } -------------------------------------------------------------------------------- /meh/assets/scss/_custom.scss: -------------------------------------------------------------------------------- 1 | // This file is empty within the template 2 | // You can use it to override CSS from within your project -------------------------------------------------------------------------------- /meh/assets/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin mobile-xs{ 2 | @media(max-width:400px){ 3 | @content; 4 | } 5 | } 6 | @mixin mobile{ 7 | @media(max-width:575px){ 8 | @content; 9 | } 10 | } 11 | @mixin tablet{ 12 | @media(max-width:767px){ 13 | @content; 14 | } 15 | } 16 | @mixin desktop{ 17 | @media(max-width:991px){ 18 | @content; 19 | } 20 | } 21 | @mixin desktop-lg{ 22 | @media(max-width:1200px){ 23 | @content; 24 | } 25 | } 26 | 27 | @mixin size($size){ 28 | width: $size; height: $size; 29 | } -------------------------------------------------------------------------------- /meh/assets/scss/_typography.scss: -------------------------------------------------------------------------------- 1 | /* typography */ 2 | 3 | body { 4 | line-height: 1.2; 5 | font-family: $primary-font; 6 | -webkit-font-smoothing: antialiased; 7 | font-size: 16px; 8 | color: $text-color; 9 | } 10 | 11 | p, 12 | .paragraph { 13 | font-weight: 400; 14 | color: $text-color; 15 | font-size: 16px; 16 | line-height: 1.7; 17 | font-family: $primary-font; 18 | } 19 | 20 | small { 21 | font-size: 88%; 22 | } 23 | 24 | h1, .h1, 25 | h2, .h2, 26 | h3, .h3, 27 | h4, .h4, 28 | h5, .h5, 29 | h6, .h6 { 30 | color: $text-color-dark; 31 | font-family: $primary-font; 32 | font-weight: 700; 33 | line-height: 1.2; 34 | } 35 | 36 | h1, 37 | .h1 { 38 | font-size: 48px; 39 | 40 | @include tablet { 41 | font-size: 40px; 42 | } 43 | } 44 | 45 | h2, 46 | .h2 { 47 | font-size: 38px; 48 | 49 | @include tablet { 50 | font-size: 30px; 51 | } 52 | } 53 | 54 | h3, 55 | .h3 { 56 | font-size: 24px; 57 | } 58 | 59 | h4, 60 | .h4 { 61 | font-size: 20px; 62 | } 63 | 64 | h5, 65 | .h5 { 66 | font-size: 16px; 67 | } 68 | 69 | h6, 70 | .h6 { 71 | font-size: 15px; 72 | } 73 | 74 | .display-3{ 75 | font-size: 3.5rem; 76 | } -------------------------------------------------------------------------------- /meh/assets/scss/style.scss: -------------------------------------------------------------------------------- 1 | // Color Variables 2 | {{ with site.Params.variables }} 3 | $primary-color: {{.primary_color | default "#0AA8A7"}}; 4 | $text-color: {{.text_color | default "#777"}}; 5 | $text-color-dark: {{.text_color_dark | default "#222"}}; 6 | $body-color: {{.body_color | default "#fff"}}; 7 | $border-color: {{.border_color | default "#ECECEC"}}; 8 | $black: {{.black | default "#000"}}; 9 | $white: {{.white | default "#fff"}}; 10 | $light: {{.light | default "#EDF6F5"}}; 11 | 12 | // Font Variables 13 | $primary-font: '{{ replaceRE ":[ital,]*wght@[0-9,;]+" "" .primary_font | default "Lato"}}', {{.primary_font_type | default "sans-serif"}}; 14 | $icon-font: '{{.icon_font | default "Font Awesome 5 Free"}}'; 15 | {{ end }} 16 | 17 | @import 'mixins'; 18 | 19 | @import 'typography'; 20 | 21 | @import 'buttons'; 22 | 23 | @import 'common'; 24 | 25 | @import 'templates/navigation.scss'; 26 | 27 | @import 'templates/main.scss'; 28 | 29 | @import 'custom'; -------------------------------------------------------------------------------- /meh/assets/scss/templates/_main.scss: -------------------------------------------------------------------------------- 1 | // banner 2 | .banner { 3 | padding: 100px 0 50px; 4 | } 5 | 6 | .feature-card { 7 | border-radius: 10px; 8 | padding: 20px; 9 | transition: .2s ease; 10 | background-color: $white; 11 | 12 | &:hover { 13 | @extend .shadow; 14 | } 15 | 16 | svg,i { 17 | font-size: 30px; 18 | color: $primary-color; 19 | display: inline-block; 20 | } 21 | } 22 | 23 | .footer-list a { 24 | display: block; 25 | padding: 5px 0; 26 | font-size: 16px; 27 | color: $text-color; 28 | margin: 8px 0; 29 | 30 | &:hover { 31 | color: $primary-color; 32 | } 33 | } 34 | 35 | .social-icons a { 36 | color: $primary-color; 37 | text-align: center; 38 | height: 35px; 39 | width: 35px; 40 | line-height: 35px; 41 | border: 1px solid $primary-color; 42 | border-radius: 50%; 43 | display: block; 44 | 45 | &:hover { 46 | color: $white; 47 | background-color: $primary-color; 48 | } 49 | } 50 | 51 | // blog card 52 | .card-img { 53 | object-fit: cover; 54 | width: 100%; 55 | height: 10vw; 56 | } 57 | 58 | // blog post 59 | a.post-title { 60 | color: $text-color-dark; 61 | display: block; 62 | 63 | &:hover { 64 | color: $primary-color; 65 | } 66 | } 67 | 68 | .content { 69 | 70 | * { 71 | word-break: break-word; 72 | overflow-wrap: break-word; 73 | margin-bottom: 20px; 74 | } 75 | 76 | img { 77 | max-width: 100%; 78 | } 79 | 80 | h1, 81 | h2, 82 | h3, 83 | h4, 84 | h5, 85 | h6 { 86 | margin-bottom: 15px; 87 | } 88 | 89 | strong { 90 | font-weight: 600; 91 | } 92 | 93 | a { 94 | color: $text-color; 95 | border-bottom: 1px dotted $border-color; 96 | 97 | &:hover { 98 | color: $primary-color; 99 | } 100 | } 101 | 102 | ol, 103 | ul { 104 | padding-left: 20px; 105 | 106 | li { 107 | margin-bottom: 10px; 108 | } 109 | } 110 | 111 | ul { 112 | padding-left: 0; 113 | margin-bottom: 20px; 114 | list-style-type: none; 115 | 116 | li { 117 | padding-left: 20px; 118 | position: relative; 119 | 120 | &::before { 121 | position: absolute; 122 | content: ''; 123 | height: 8px; 124 | width: 8px; 125 | border-radius: 50%; 126 | background: $primary-color; 127 | left: 3px; 128 | top: 5px; 129 | } 130 | } 131 | } 132 | 133 | table { 134 | width: 100%; 135 | max-width: 100%; 136 | margin-bottom: 1rem; 137 | border: 1px solid $border-color; 138 | } 139 | 140 | table td, 141 | table th { 142 | padding: .75rem; 143 | vertical-align: top; 144 | margin-bottom: 0; 145 | } 146 | 147 | th, 148 | td { 149 | &:not(:last-of-type) { 150 | border-right: 1px solid $border-color; 151 | } 152 | } 153 | 154 | th { 155 | font-weight: 500; 156 | } 157 | 158 | thead { 159 | background: $white; 160 | margin-bottom: 0; 161 | 162 | tr { 163 | border-bottom: 1px solid $border-color; 164 | } 165 | } 166 | 167 | tbody { 168 | background-color: transparent; 169 | margin-bottom: 0; 170 | } 171 | 172 | .notices { 173 | margin: 2rem 0; 174 | position: relative; 175 | overflow: hidden; 176 | } 177 | 178 | .notices p { 179 | padding: 10px; 180 | margin-bottom: 0; 181 | } 182 | 183 | .notices p::before { 184 | position: absolute; 185 | top: 2px; 186 | color: $white; 187 | font-family: "themify"; 188 | font-weight: 900; 189 | content: "\e717"; 190 | left: 10px; 191 | } 192 | 193 | .notices.note p { 194 | border-top: 30px solid #6ab0de; 195 | background: $white; 196 | } 197 | 198 | .notices.note p::after { 199 | content: 'Note'; 200 | position: absolute; 201 | top: 2px; 202 | color: $white; 203 | left: 2rem; 204 | } 205 | 206 | 207 | .notices.tip p { 208 | border-top: 30px solid #78C578; 209 | background: $white; 210 | } 211 | 212 | .notices.tip p::after { 213 | content: 'Tip'; 214 | position: absolute; 215 | top: 2px; 216 | color: $white; 217 | left: 2rem; 218 | } 219 | 220 | .notices.info p { 221 | border-top: 30px solid #F0B37E; 222 | background: $white; 223 | } 224 | 225 | .notices.info p::after { 226 | content: 'Info'; 227 | position: absolute; 228 | top: 2px; 229 | color: $white; 230 | left: 2rem; 231 | } 232 | 233 | 234 | .notices.warning p { 235 | border-top: 30px solid #E06F6C; 236 | background: $white; 237 | } 238 | 239 | .notices.warning p::after { 240 | content: 'Warning'; 241 | position: absolute; 242 | top: 2px; 243 | color: #fff; 244 | left: 2rem; 245 | } 246 | 247 | 248 | blockquote { 249 | font-size: 20px !important; 250 | color: $text-color; 251 | padding: 20px 40px; 252 | border-left: 2px solid $primary-color; 253 | margin: 40px 0; 254 | font-weight: bold; 255 | background: $white; 256 | 257 | p { 258 | margin-bottom: 0 !important; 259 | } 260 | } 261 | 262 | pre { 263 | display: block; 264 | padding: 9.5px; 265 | margin: 10px 0px 10px; 266 | white-space: pre-wrap; 267 | } 268 | 269 | code { 270 | margin-bottom: 0 !important; 271 | font-size: 100%; 272 | } 273 | } 274 | 275 | 276 | // pagination 277 | .pagination { 278 | margin-top: 30px; 279 | justify-content: center; 280 | 281 | .page-item { 282 | .page-link { 283 | display: inline-block; 284 | width: 40px; 285 | height: 40px; 286 | line-height: 40px; 287 | border-radius: 5px; 288 | background: $light; 289 | text-align: center; 290 | padding: 0; 291 | margin-right: 10px; 292 | border: 0; 293 | color: $text-color; 294 | 295 | &:hover { 296 | background: $primary-color; 297 | color: $white; 298 | } 299 | 300 | &:focus { 301 | box-shadow: none; 302 | } 303 | } 304 | 305 | &:first-child, 306 | &:last-child { 307 | .page-link { 308 | border-radius: 5px; 309 | } 310 | } 311 | 312 | &.active { 313 | .page-link { 314 | background: $primary-color; 315 | color: $white; 316 | } 317 | } 318 | } 319 | } 320 | 321 | .slick-dots { 322 | text-align: center; 323 | margin-top: 20px; 324 | padding: 0; 325 | 326 | li { 327 | display: inline-block; 328 | margin: 0 5px; 329 | 330 | &.slick-active { 331 | button { 332 | background-color: $primary-color; 333 | } 334 | } 335 | 336 | button { 337 | height: 10px; 338 | width: 10px; 339 | border-radius: 50%; 340 | display: block; 341 | color: transparent; 342 | padding: 0; 343 | border: 1px solid $primary-color; 344 | background-color: transparent; 345 | transition: .2s ease; 346 | } 347 | } 348 | } 349 | 350 | // pricing table 351 | .col-recommended { 352 | margin: -2rem -1.5rem; 353 | z-index: 1; 354 | @include desktop { 355 | margin: 0; 356 | margin-bottom: 40px; 357 | } 358 | } 359 | 360 | .price{ 361 | font-size: 50px; 362 | color: $text-color-dark; 363 | } -------------------------------------------------------------------------------- /meh/assets/scss/templates/_navigation.scss: -------------------------------------------------------------------------------- 1 | .nav-item { 2 | margin: 0; 3 | 4 | .nav-link { 5 | text-transform: capitalize; 6 | font-weight: 700; 7 | } 8 | } 9 | 10 | .navbar-light .navbar-nav .nav-link { 11 | color: $text-color-dark; 12 | 13 | &:hover { 14 | color: $primary-color; 15 | } 16 | } 17 | 18 | .navbar-expand-lg .navbar-nav .nav-link { 19 | padding: 20px; 20 | 21 | @include desktop { 22 | padding: 10px; 23 | } 24 | } 25 | 26 | #select-language{ 27 | background-color: transparent; 28 | font-weight: 700; 29 | } -------------------------------------------------------------------------------- /meh/config.toml: -------------------------------------------------------------------------------- 1 | # This file is for render site varibles and plugins 2 | # don't remove this file. 3 | # The presence of this file is for compatibility with Blogdown and Forestry. 4 | # 5 | # The actual configuration files are stored in the `config/_default/` folder. 6 | 7 | 8 | ######################### site variables ############################## 9 | # customize your color and font from here. 10 | [params.variables] 11 | primary_color = "#0AA8A7" 12 | text_color = "#777" 13 | text_color_dark = "#222" 14 | body_color = "#fff" 15 | border_color = "#ECECEC" 16 | black = "#000" 17 | white = "#fff" 18 | light = "#EDF6F5" 19 | 20 | # font variable 21 | # Give your font name from google font. add font weight using ":wght@" and separate by ";" 22 | # example: "Work Sans:wght@400;500;600" 23 | primary_font = "Lato:wght@400" 24 | primary_font_type = "sans-serif" # [serif/sans-serif] 25 | icon_font = "Font Awesome 5 Free" 26 | 27 | 28 | ############################# Plugins ############################## 29 | # CSS Plugins 30 | [[params.plugins.css]] 31 | link = "plugins/bootstrap/bootstrap.min.css" 32 | [[params.plugins.css]] 33 | link = "plugins/slick/slick.css" 34 | [[params.plugins.css]] 35 | link = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/fontawesome.min.css" 36 | [[params.plugins.css]] 37 | link = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/brands.min.css" 38 | [[params.plugins.css]] 39 | link = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/solid.min.css" 40 | 41 | 42 | # JS Plugins 43 | [[params.plugins.js]] 44 | link = "plugins/jQuery/jquery.slim.min.js" 45 | [[params.plugins.js]] 46 | link = "plugins/bootstrap/bootstrap.min.js" 47 | [[params.plugins.js]] 48 | link = "plugins/slick/slick.min.js" 49 | # [[params.plugins.js]] 50 | # link = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/js/all.min.js" 51 | # attributes = "crossorigin='anonymous' defer='defer' data-search-pseudo-elements" -------------------------------------------------------------------------------- /meh/exampleSite/config/_default/config.toml: -------------------------------------------------------------------------------- 1 | ######################## default configuration #################### 2 | baseURL = "http://examplesite.org/" 3 | title = "Bigspring Light" 4 | theme = "bigspring-light" 5 | # post pagination 6 | paginate = "3" 7 | # post excerpt 8 | summaryLength = "15" 9 | # disqus short name 10 | disqusShortname = "" # get your shortname form here : https://disqus.com 11 | # google analytics 12 | googleAnalytics = "" # example : UA-123-45 13 | # unsafe html 14 | [markup.goldmark.renderer] 15 | unsafe = true -------------------------------------------------------------------------------- /meh/exampleSite/config/_default/languages.toml: -------------------------------------------------------------------------------- 1 | ############################# English ############################ 2 | [en] 3 | languageName = "En" 4 | title = "Bigspring Hugo" 5 | contentDir = "content/english" # content/english 6 | weight = 1 7 | ########### footer content ########## 8 | footer_menu_left = "Company" 9 | footer_menu_middle = "Product" 10 | footer_menu_right = "Support" 11 | footer_content = "Lorem ipsum dolor sit amet, consectetur elit. Consjat tristique eget amet, tempus eu at cttur." 12 | # copyright 13 | copyright = "Design By [Themefisher](https://themefisher.com/) Develop By [Gethugothemes](https://gethugothemes.com/)" 14 | 15 | 16 | 17 | ############################# Deutsch ############################ 18 | [de] 19 | languageName = "De" 20 | title = "Bigspring Hugo" 21 | contentDir = "content/deutsch" # content/german 22 | weight = 2 23 | ########### footer content ########## 24 | footer_menu_left = "Firma" 25 | footer_menu_middle = "Produkte" 26 | footer_menu_right = "Support" 27 | footer_content = "Lorem ipsum dolor sit amet, consectetur elit. Consjat tristique eget amet, tempus eu at cttur." 28 | # copyright 29 | copyright = "Design von [Themefisher](https://themefisher.com/) Entwickelt von [Gethugothemes](https://gethugothemes.com/)" -------------------------------------------------------------------------------- /meh/exampleSite/config/_default/menus.de.toml: -------------------------------------------------------------------------------- 1 | # main menu 2 | [[main]] 3 | name = "Home" 4 | url = "/" 5 | weight = 1 6 | 7 | [[main]] 8 | name = "Blog" 9 | url = "blog" 10 | weight = 2 11 | 12 | [[main]] 13 | name = "Pricing" 14 | url = "pricing" 15 | weight = 3 16 | 17 | [[main]] 18 | name = "Contact" 19 | url = "contact" 20 | weight = 4 21 | 22 | [[main]] 23 | name = "FAQ" 24 | url = "faq" 25 | weight = 5 26 | 27 | # footer menu left 28 | [[footer_left]] 29 | name = "About Us" 30 | url = "#" 31 | 32 | [[footer_left]] 33 | name = "Quick Start" 34 | url = "#" 35 | 36 | [[footer_left]] 37 | name = "Pricing" 38 | url = "pricing" 39 | 40 | 41 | # footer menu middle 42 | [[footer_middle]] 43 | name = "Pricing" 44 | url = "pricing" 45 | 46 | [[footer_middle]] 47 | name = "Platform" 48 | url = "#" 49 | 50 | [[footer_middle]] 51 | name = "Features" 52 | url = "#" 53 | 54 | # footer menu right 55 | [[footer_right]] 56 | name = "Privacy Policy" 57 | url = "privacy-policy" 58 | 59 | [[footer_right]] 60 | name = "Terms & Conditions" 61 | url = "terms-conditions" 62 | 63 | [[footer_right]] 64 | name = "FAQ" 65 | url = "faq" -------------------------------------------------------------------------------- /meh/exampleSite/config/_default/menus.en.toml: -------------------------------------------------------------------------------- 1 | # main menu 2 | [[main]] 3 | name = "Home" 4 | url = "/" 5 | weight = 1 6 | 7 | [[main]] 8 | name = "Blog" 9 | url = "blog" 10 | weight = 2 11 | 12 | [[main]] 13 | name = "Pricing" 14 | url = "pricing" 15 | weight = 3 16 | 17 | [[main]] 18 | name = "Contact" 19 | url = "contact" 20 | weight = 4 21 | 22 | [[main]] 23 | name = "FAQ" 24 | url = "faq" 25 | weight = 5 26 | 27 | # footer menu left 28 | [[footer_left]] 29 | name = "About Us" 30 | url = "#" 31 | 32 | [[footer_left]] 33 | name = "Quick Start" 34 | url = "#" 35 | 36 | [[footer_left]] 37 | name = "Pricing" 38 | url = "pricing" 39 | 40 | 41 | # footer menu middle 42 | [[footer_middle]] 43 | name = "Pricing" 44 | url = "pricing" 45 | 46 | [[footer_middle]] 47 | name = "Platform" 48 | url = "#" 49 | 50 | [[footer_middle]] 51 | name = "Features" 52 | url = "#" 53 | 54 | # footer menu right 55 | [[footer_right]] 56 | name = "Privacy Policy" 57 | url = "privacy-policy" 58 | 59 | [[footer_right]] 60 | name = "Terms & Conditions" 61 | url = "terms-conditions" 62 | 63 | [[footer_right]] 64 | name = "FAQ" 65 | url = "faq" -------------------------------------------------------------------------------- /meh/exampleSite/config/_default/params.toml: -------------------------------------------------------------------------------- 1 | #################### default parameters ################################ 2 | logo = "images/logo.png" 3 | logo_width = "200px" 4 | # OpenGraph / Twitter Card metadata 5 | description = "This is meta description" 6 | author = "Themefisher" 7 | image = "images/logo.png" # this image will be used as fallback if a page has no image of its own 8 | # contact form action 9 | contact_form_action = "#" # contact form works with https://formspree.io 10 | 11 | # Type of pages to be rendered with a blog view 12 | blogCategoryType = "category" 13 | 14 | # Preloader 15 | [preloader] 16 | enable = false 17 | preloader = "" # use jpg, png, svg or gif format. 18 | 19 | # Navigation buttons 20 | [navigation_button] 21 | enable = true 22 | label = "Get Started" 23 | link = "contact" 24 | 25 | # cookies 26 | [cookies] 27 | enable = false 28 | expire_days = 2 29 | content = "This site uses cookies. By continuing to use this website, you agree to their use." 30 | button = "I Accept" 31 | 32 | ############################# social site ######################## 33 | [[social]] 34 | title = "facebook" 35 | icon = "fab fa-facebook" # themify icon : https://themify.me/themify-icons 36 | link = "#" 37 | 38 | [[social]] 39 | title = "twitter" 40 | icon = "fab fa-twitter" # themify icon : https://themify.me/themify-icons 41 | link = "#" 42 | 43 | [[social]] 44 | title = "skype" 45 | icon = "fab fa-skype" # themify icon : https://themify.me/themify-icons 46 | link = "#" 47 | 48 | [[social]] 49 | title = "linkedin" 50 | icon = "fab fa-linkedin" # themify icon : https://themify.me/themify-icons 51 | link = "#" -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | ####################### Banner ######################### 3 | banner: 4 | title : "Lassen Sie uns Ihre kritischen Herausforderungen bei der Website
Entwicklung lösen" 5 | image : "images/banner-art.svg" 6 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque
totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus" 7 | button: 8 | enable : true 9 | label : "Contact Us" 10 | link : "contact" 11 | 12 | ##################### Feature ########################## 13 | feature: 14 | enable : true 15 | title : "Something You Need To Know" 16 | feature_item: 17 | # feature item loop 18 | - name : "Clean Code" 19 | icon : "fas fa-code" 20 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 21 | 22 | # feature item loop 23 | - name : "Object Oriented" 24 | icon : "fas fa-object-group" 25 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 26 | 27 | # feature item loop 28 | - name : "24h Service" 29 | icon : "fas fa-user-clock" 30 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 31 | 32 | # feature item loop 33 | - name : "Value For Money" 34 | icon : "fas fa-heart" 35 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 36 | 37 | # feature item loop 38 | - name : "Faster Response" 39 | icon : "fas fa-tachometer-alt" 40 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 41 | 42 | # feature item loop 43 | - name : "Cloud Support" 44 | icon : "fas fa-cloud" 45 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 46 | 47 | 48 | 49 | ######################### Service ##################### 50 | service: 51 | enable : true 52 | service_item: 53 | # service item loop 54 | - title : "It is the most advanced digital marketing and it company." 55 | images: 56 | - "images/service-1.png" 57 | - "images/service-2.png" 58 | - "images/service-3.png" 59 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 60 | button: 61 | enable : true 62 | label : "Check it out" 63 | link : "#" 64 | 65 | # service item loop 66 | - title : "It is a privately owned Information and cyber security company" 67 | images: 68 | - "images/service-1.png" 69 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 70 | button: 71 | enable : true 72 | label : "Check it out" 73 | link : "#" 74 | 75 | # service item loop 76 | - title : "It’s a team of experienced and skilled people with distributions" 77 | images: 78 | - "images/service-2.png" 79 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 80 | button: 81 | enable : true 82 | label : "Check it out" 83 | link : "#" 84 | 85 | # service item loop 86 | - title : "A company standing different from others" 87 | images: 88 | - "images/service-3.png" 89 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 90 | button: 91 | enable : true 92 | label : "Check it out" 93 | link : "#" 94 | 95 | ################### Screenshot ######################## 96 | screenshot: 97 | enable : true 98 | title : "Experience the best
workflow with us" 99 | image : "images/screenshot.svg" 100 | 101 | 102 | 103 | ##################### Call to action ##################### 104 | call_to_action: 105 | enable : true 106 | title : "Ready to get started?" 107 | image : "images/cta.svg" 108 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur." 109 | button: 110 | enable : true 111 | label : "Contact Us" 112 | link : "contact" 113 | --- 114 | -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Neuigkeiten" 3 | subtitle: "" 4 | # meta description 5 | description: "Dies ist die Metabeschreibung" 6 | draft: false 7 | --- -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/blog/post-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Dies ist eine deutsche Testseite" 3 | date: 2020-04-18T10:07:21+06:00 4 | # post image 5 | image: "images/blog/post-1.jpg" 6 | # post type (regular/featured) 7 | type: "featured" 8 | # meta description 9 | description: "Dies ist die Metabeschreibung" 10 | # post draft 11 | draft: false 12 | --- 13 | 14 | 15 | #### Exemplarische Überschrift 16 | 17 | Hier ist ein Beispiel für eine Überschrift. Sie können diese Überschrift verwenden, indem Sie den Markdownify-Regeln folgen. Zum Beispiel: Verwenden Sie `#` für Überschrift 1 und `######` für Überschrift 6. 18 | 19 | # Überschrift 1 20 |
21 | 22 | ## Überschrift 2 23 | 24 |
25 | 26 | ### Überschrift 3 27 | 28 |
29 | 30 | #### Überschrift 4 31 | 32 |
33 | 34 | ##### Überschrift 5 35 | 36 |
37 | 38 | ###### Überschrift 6 39 | 40 | 41 |
42 | 43 | ##### Hervorhebung 44 | 45 | Hervorhebung, auch kursiv genannt, mit *Asterisken* oder _Unterstrichen_. 46 | 47 | Starke Betonung, auch fett, mit **Asterisken** oder __Unterstrichen__. 48 | 49 | Kombinierte Hervorhebung mit **Rasterzeichen und _Unterstrichen_**. 50 | 51 | Durchstreichen verwendet zwei Tilden. ~~Durchstreichen~~. 52 | 53 |
54 | 55 | ##### Link 56 | [Ich bin ein Link im Inline-Stil](https://www.google.com) 57 | 58 | [Ich bin ein Link im Inline-Stil mit Titel](https://www.google.com "Google's Homepage") 59 | 60 | [Ich bin ein Link im Referenzstil][Beliebiger Referenztext ohne Berücksichtigung der Groß-/Kleinschreibung] 61 | 62 | [Ich bin ein relativer Verweis auf eine Repository-Datei](../blob/master/LICENSE) 63 | 64 | [Sie können Zahlen für referenzähnliche Link-Definitionen verwenden][1] 65 | 66 | Oder lassen Sie es leer und verwenden Sie den [Linktext selbst]. 67 | 68 | URLs und URLs in spitzen Klammern werden automatisch in Links umgewandelt. 69 | http://www.example.com oder und manchmal 70 | example.com (aber nicht auf Github, zum Beispiel). 71 | 72 | Etwas Text, um zu zeigen, dass die Referenzlinks später folgen können. 73 | 74 | [beliebiger Referenztext ohne Berücksichtigung der Groß- und Kleinschreibung]: https://www.themefisher.com 75 | [1]: https://gethugothemes.com 76 | [Linktext selbst]: https://www.getjekyllthemes.com 77 | 78 |
79 | 80 | ##### Paragraph 81 | 82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam. 83 | 84 |
85 | 86 | ##### Geordnete Liste 87 | 88 | 1. Listeneintrag 89 | 2. Listeneintrag 90 | 3. Listeneintrag 91 | 4. Listeneintrag 92 | 5. Listeneintrag 93 | 94 |
95 | 96 | ##### Ungordnete Liste 97 | 98 | * Listeneintrag 99 | * Listeneintrag 100 | * Listeneintrag 101 | * Listeneintrag 102 | * Listeneintrag 103 | 104 |
105 | 106 | ##### Code und Syntax Highlighting 107 | 108 | Inline `code` ist von `backticks` umgeben. 109 | 110 | ```javascript 111 | var s = "JavaScript syntax highlighting"; 112 | alert(s); 113 | ``` 114 | 115 | ```python 116 | s = "Python syntax highlighting" 117 | print s 118 | ``` 119 | 120 |
121 | 122 | ##### Zitat 123 | 124 | > Dies ist ein Beispiel Zitat. 125 | 126 |
127 | 128 | ##### Inline HTML 129 | 130 | Sie können auch rohes HTML in Ihrem Markdown verwenden, und es wird meistens ziemlich gut funktionieren. 131 | 132 |
133 |
Definitionsliste
134 |
Lorem Ipsum
135 | 136 |
Markdown in HTML
137 |
Funktioniert *nicht* **sehr** gut. Verwenden Sie HTML Tags.
138 |
139 | 140 | 141 |
142 | 143 | ##### Tabellen 144 | 145 | Doppelpunkte können verwendet werden, um Spalten auszurichten. 146 | 147 | | Tables | Are | Cool | 148 | | ----------------- |:-------------------:| -----:| 149 | | spalte 3 ist | rechts ausgerichtet | $1600 | 150 | | spalte 2 ist | centered | $12 | 151 | | zebrastreifen | sind nett | $1 | 152 | 153 | Jede Kopfzelle muss durch mindestens 3 Bindestriche voneinander getrennt sein. 154 | Die äußeren Pipes (|) sind optional, und Sie müssen nicht dafür sorgen, dass das 155 | rohen Markdown nicht aufhübschen. Sie können auch Inline-Markdown verwenden. 156 | 157 | Markdown | Weniger | Schön 158 | --- | --- | --- 159 | *trotzdem* | `schön` | **dargestellt** 160 | 1 | 2 | 3 161 | 162 |
163 | 164 | ##### Bilder 165 | 166 | ![image](../../images/blog/post-6.jpg) 167 | 168 |
169 | 170 | ##### Youtube video 171 | 172 | {{< youtube C0DPdy98e4c >}} -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/contact/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Kontakt" 3 | subtitle: "" 4 | # meta description 5 | description: "Dies ist die Metabeschreibung" 6 | draft: false 7 | --- 8 | 9 | 10 | ### Warum Sie uns kontaktieren sollten! 11 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit recusandae voluptates doloremque veniam temporibus porro culpa ipsa, nisi soluta minima saepe laboriosam debitis nesciunt. 12 | 13 | * **Phone: +88 125 256 452** 14 | * **Mail: info@bigspring.com** 15 | * **Address: 360 Main rd, Rio, Brazil** -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/faq/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Häufig gestellte Fragen" 3 | subtitle: "" 4 | # meta description 5 | description: "Dies ist die Metabeschreibung" 6 | draft: false 7 | --- 8 | 9 | 10 | {{< faq "Will updates also be free?" >}} 11 | Lorem, [link](https://examplesite.com) _ipsum_ dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 12 | {{}} 13 | 14 | {{< faq "Discounts for students and Non Profit Organizations?" >}} 15 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 16 | {{}} 17 | 18 | {{< faq "I need something unique, Can you make it?" >}} 19 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 20 | {{}} 21 | 22 | {{< faq "Is there any documentation and support?" >}} 23 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 24 | {{}} 25 | 26 | {{< faq "Any refunds?" >}} 27 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 28 | {{}} 29 | 30 | {{< faq "What is a product key?" >}} 31 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 32 | {{}} 33 | 34 | {{< faq "Where do I download the file to?" >}} 35 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 36 | {{}} 37 | 38 | {{< faq "Any refunds?" >}} 39 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 40 | {{}} -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/pricing/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Preise" 3 | subtitle: "" 4 | # meta description 5 | description: "Dies ist die Metabeschreibung" 6 | draft: false 7 | 8 | basic: 9 | name : "Basis Plan" 10 | price: "€49" 11 | price_per : "Monat" 12 | info : "Ideal für KMUs" 13 | services: 14 | - "Express Service" 15 | - "Customs Clearance" 16 | - "Time-Critical Services" 17 | button: 18 | enable : true 19 | label : "Kostenlos starten" 20 | link : "#" 21 | 22 | professional: 23 | name : "Professional Plan" 24 | price: "€49" 25 | price_per : "Monat" 26 | info : "Ideal für Professionals" 27 | services: 28 | - "Express Service" 29 | - "Customs Clearance" 30 | - "Time-Critical Services" 31 | - "Cloud Service" 32 | - "Best Dashboard" 33 | button: 34 | enable : true 35 | label : "Kostenlos starten" 36 | link : "#" 37 | 38 | business: 39 | name : "Business Plan" 40 | price: "€49" 41 | price_per : "Monat" 42 | info : "Ideal für Unternehmen" 43 | services: 44 | - "Express Service" 45 | - "Customs Clearance" 46 | - "Time-Critical Services" 47 | button: 48 | enable : true 49 | label : "Kostenlos starten" 50 | link : "#" 51 | 52 | call_to_action: 53 | enable : true 54 | title : "Need a larger plan?" 55 | image : "images/cta.svg" 56 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur." 57 | button: 58 | enable : true 59 | label : "Contact Us" 60 | link : "contact" 61 | --- -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/privacy-policy/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Datenschutz" 3 | subtitle: "" 4 | # meta description 5 | description: "Dies ist die Metabeschreibung" 6 | draft: false 7 | --- 8 | 9 | #### Responsibility of Contributors 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 12 | 13 | pretium, aliquam sit. Praesent elementum magna amet, tincidunt eros, nibh in leo. Malesuada purus, lacus, at aliquam suspendisse tempus. Quis tempus amet, velit nascetur sollicitudin. At sollicitudin eget amet in. Eu velit nascetur sollicitudin erhdfvssfvrgss eget viverra nec elementum. Lacus, facilisis tristique lectus in. 14 | 15 | #### Gathering of Personal Information 16 | 17 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 18 | 19 | #### Protection of Personal- Information 20 | 21 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. 22 | 23 | Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat 25 | 26 | #### Privacy Policy Changes 27 | 28 | 1. Sll the Themefisher items are designed to be with the latest , We check all 29 | 2. comments that threaten or harm the reputation of any person or organization 30 | 3. personal information including, but limited to, email addresses, telephone numbers 31 | 4. Any Update come in The technology Customer will get automatic Notification. -------------------------------------------------------------------------------- /meh/exampleSite/content/deutsch/terms-conditions/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Allgemeine Geschäftsbedingungen" 3 | subtitle: "" 4 | # meta description 5 | description: "Dies ist die Metabeschreibung" 6 | draft: false 7 | --- 8 | 9 | #### Responsibility of Contributors 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 12 | 13 | pretium, aliquam sit. Praesent elementum magna amet, tincidunt eros, nibh in leo. Malesuada purus, lacus, at aliquam suspendisse tempus. Quis tempus amet, velit nascetur sollicitudin. At sollicitudin eget amet in. Eu velit nascetur sollicitudin erhdfvssfvrgss eget viverra nec elementum. Lacus, facilisis tristique lectus in. 14 | 15 | #### Gathering of Personal Information 16 | 17 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 18 | 19 | #### Protection of Personal- Information 20 | 21 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. 22 | 23 | Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat 25 | 26 | #### Privacy Policy Changes 27 | 28 | 1. Sll the Themefisher items are designed to be with the latest , We check all 29 | 2. comments that threaten or harm the reputation of any person or organization 30 | 3. personal information including, but limited to, email addresses, telephone numbers 31 | 4. Any Update come in The technology Customer will get automatic Notification. -------------------------------------------------------------------------------- /meh/exampleSite/content/english/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | ####################### Banner ######################### 3 | banner: 4 | title : "Let us solve your critical website
development challenges" 5 | image : "images/banner-art.svg" 6 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque
totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus" 7 | button: 8 | enable : true 9 | label : "Contact Us" 10 | link : "contact" 11 | 12 | ##################### Feature ########################## 13 | feature: 14 | enable : true 15 | title : "Something You Need To Know" 16 | feature_item: 17 | # feature item loop 18 | - name : "Clean Code" 19 | icon : "fas fa-code" 20 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 21 | 22 | # feature item loop 23 | - name : "Object Oriented" 24 | icon : "fas fa-object-group" 25 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 26 | 27 | # feature item loop 28 | - name : "24h Service" 29 | icon : "fas fa-user-clock" 30 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 31 | 32 | # feature item loop 33 | - name : "Value For Money" 34 | icon : "fas fa-heart" 35 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 36 | 37 | # feature item loop 38 | - name : "Faster Response" 39 | icon : "fas fa-tachometer-alt" 40 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 41 | 42 | # feature item loop 43 | - name : "Cloud Support" 44 | icon : "fas fa-cloud" 45 | content : "Lorem ipsum dolor sit amet consectetur adipisicing elit quam nihil" 46 | 47 | 48 | 49 | ######################### Service ##################### 50 | service: 51 | enable : true 52 | service_item: 53 | # service item loop 54 | - title : "It is the most advanced digital marketing and it company." 55 | images: 56 | - "images/service-1.png" 57 | - "images/service-2.png" 58 | - "images/service-3.png" 59 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 60 | button: 61 | enable : true 62 | label : "Check it out" 63 | link : "#" 64 | 65 | # service item loop 66 | - title : "It is a privately owned Information and cyber security company" 67 | images: 68 | - "images/service-1.png" 69 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 70 | button: 71 | enable : true 72 | label : "Check it out" 73 | link : "#" 74 | 75 | # service item loop 76 | - title : "It’s a team of experienced and skilled people with distributions" 77 | images: 78 | - "images/service-2.png" 79 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 80 | button: 81 | enable : true 82 | label : "Check it out" 83 | link : "#" 84 | 85 | # service item loop 86 | - title : "A company standing different from others" 87 | images: 88 | - "images/service-3.png" 89 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat. consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur. Leo facilisi nunc viverra tellus. Ac laoreet sit vel consquat." 90 | button: 91 | enable : true 92 | label : "Check it out" 93 | link : "#" 94 | 95 | ################### Screenshot ######################## 96 | screenshot: 97 | enable : true 98 | title : "Experience the best
workflow with us" 99 | image : "images/screenshot.svg" 100 | 101 | 102 | 103 | ##################### Call to action ##################### 104 | call_to_action: 105 | enable : true 106 | title : "Ready to get started?" 107 | image : "images/cta.svg" 108 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur." 109 | button: 110 | enable : true 111 | label : "Contact Us" 112 | link : "contact" 113 | --- 114 | -------------------------------------------------------------------------------- /meh/exampleSite/content/english/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Latest News" 3 | subtitle: "" 4 | # meta description 5 | description: "This is meta description" 6 | draft: false 7 | --- -------------------------------------------------------------------------------- /meh/exampleSite/content/english/blog/post-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adversus is a web-based dialer and practical CRM solution" 3 | date: 2020-04-18T10:07:21+06:00 4 | # post image 5 | image: "images/blog/post-1.jpg" 6 | # post type (regular/featured) 7 | type: "featured" 8 | # meta description 9 | description: "This is meta description" 10 | # post draft 11 | draft: false 12 | --- 13 | 14 | 15 | #### Heading example 16 | 17 | Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6. 18 | 19 | # Heading 1 20 |
21 | 22 | ## Heading 2 23 | 24 |
25 | 26 | ### Heading 3 27 | 28 |
29 | 30 | #### Heading 4 31 | 32 |
33 | 34 | ##### Heading 5 35 | 36 |
37 | 38 | ###### Heading 6 39 | 40 | 41 |
42 | 43 | ##### Emphasis 44 | 45 | Emphasis, aka italics, with *asterisks* or _underscores_. 46 | 47 | Strong emphasis, aka bold, with **asterisks** or __underscores__. 48 | 49 | Combined emphasis with **asterisks and _underscores_**. 50 | 51 | Strikethrough uses two tildes. ~~Scratch this.~~ 52 | 53 |
54 | 55 | ##### Link 56 | [I'm an inline-style link](https://www.google.com) 57 | 58 | [I'm an inline-style link with title](https://www.google.com "Google's Homepage") 59 | 60 | [I'm a reference-style link][Arbitrary case-insensitive reference text] 61 | 62 | [I'm a relative reference to a repository file](../blob/master/LICENSE) 63 | 64 | [You can use numbers for reference-style link definitions][1] 65 | 66 | Or leave it empty and use the [link text itself]. 67 | 68 | URLs and URLs in angle brackets will automatically get turned into links. 69 | http://www.example.com or and sometimes 70 | example.com (but not on Github, for example). 71 | 72 | Some text to show that the reference links can follow later. 73 | 74 | [arbitrary case-insensitive reference text]: https://www.themefisher.com 75 | [1]: https://gethugothemes.com 76 | [link text itself]: https://www.getjekyllthemes.com 77 | 78 |
79 | 80 | ##### Paragraph 81 | 82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam. 83 | 84 |
85 | 86 | ##### Ordered List 87 | 88 | 1. List item 89 | 2. List item 90 | 3. List item 91 | 4. List item 92 | 5. List item 93 | 94 |
95 | 96 | ##### Unordered List 97 | 98 | * List item 99 | * List item 100 | * List item 101 | * List item 102 | * List item 103 | 104 |
105 | 106 | ##### Code and Syntax Highlighting 107 | 108 | Inline `code` has `back-ticks around` it. 109 | 110 | ```javascript 111 | var s = "JavaScript syntax highlighting"; 112 | alert(s); 113 | ``` 114 | 115 | ```python 116 | s = "Python syntax highlighting" 117 | print s 118 | ``` 119 | 120 |
121 | 122 | ##### Blockquote 123 | 124 | > This is a blockquote example. 125 | 126 |
127 | 128 | ##### Inline HTML 129 | 130 | You can also use raw HTML in your Markdown, and it'll mostly work pretty well. 131 | 132 |
133 |
Definition list
134 |
Is something people use sometimes.
135 | 136 |
Markdown in HTML
137 |
Does *not* work **very** well. Use HTML tags.
138 |
139 | 140 | 141 |
142 | 143 | ##### Tables 144 | 145 | Colons can be used to align columns. 146 | 147 | | Tables | Are | Cool | 148 | | ------------- |:-------------:| -----:| 149 | | col 3 is | right-aligned | $1600 | 150 | | col 2 is | centered | $12 | 151 | | zebra stripes | are neat | $1 | 152 | 153 | There must be at least 3 dashes separating each header cell. 154 | The outer pipes (|) are optional, and you don't need to make the 155 | raw Markdown line up prettily. You can also use inline Markdown. 156 | 157 | Markdown | Less | Pretty 158 | --- | --- | --- 159 | *Still* | `renders` | **nicely** 160 | 1 | 2 | 3 161 | 162 |
163 | 164 | ##### Image 165 | 166 | ![image](../../images/blog/post-6.jpg) 167 | 168 |
169 | 170 | ##### Youtube video 171 | 172 | {{< youtube C0DPdy98e4c >}} -------------------------------------------------------------------------------- /meh/exampleSite/content/english/blog/post-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Pump-up the team morale and celebrate the excellence" 3 | date: 2020-04-18T10:07:21+06:00 4 | # post image 5 | image: "images/blog/post-2.jpg" 6 | # post type (regular/featured) 7 | type: "regular" 8 | # meta description 9 | description: "This is meta description" 10 | # post draft 11 | draft: false 12 | --- 13 | 14 | 15 | #### Heading example 16 | 17 | Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6. 18 | 19 | # Heading 1 20 |
21 | 22 | ## Heading 2 23 | 24 |
25 | 26 | ### Heading 3 27 | 28 |
29 | 30 | #### Heading 4 31 | 32 |
33 | 34 | ##### Heading 5 35 | 36 |
37 | 38 | ###### Heading 6 39 | 40 | 41 |
42 | 43 | ##### Emphasis 44 | 45 | Emphasis, aka italics, with *asterisks* or _underscores_. 46 | 47 | Strong emphasis, aka bold, with **asterisks** or __underscores__. 48 | 49 | Combined emphasis with **asterisks and _underscores_**. 50 | 51 | Strikethrough uses two tildes. ~~Scratch this.~~ 52 | 53 |
54 | 55 | ##### Link 56 | [I'm an inline-style link](https://www.google.com) 57 | 58 | [I'm an inline-style link with title](https://www.google.com "Google's Homepage") 59 | 60 | [I'm a reference-style link][Arbitrary case-insensitive reference text] 61 | 62 | [I'm a relative reference to a repository file](../blob/master/LICENSE) 63 | 64 | [You can use numbers for reference-style link definitions][1] 65 | 66 | Or leave it empty and use the [link text itself]. 67 | 68 | URLs and URLs in angle brackets will automatically get turned into links. 69 | http://www.example.com or and sometimes 70 | example.com (but not on Github, for example). 71 | 72 | Some text to show that the reference links can follow later. 73 | 74 | [arbitrary case-insensitive reference text]: https://www.themefisher.com 75 | [1]: https://gethugothemes.com 76 | [link text itself]: https://www.getjekyllthemes.com 77 | 78 |
79 | 80 | ##### Paragraph 81 | 82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam. 83 | 84 |
85 | 86 | ##### Ordered List 87 | 88 | 1. List item 89 | 2. List item 90 | 3. List item 91 | 4. List item 92 | 5. List item 93 | 94 |
95 | 96 | ##### Unordered List 97 | 98 | * List item 99 | * List item 100 | * List item 101 | * List item 102 | * List item 103 | 104 |
105 | 106 | ##### Code and Syntax Highlighting 107 | 108 | Inline `code` has `back-ticks around` it. 109 | 110 | ```javascript 111 | var s = "JavaScript syntax highlighting"; 112 | alert(s); 113 | ``` 114 | 115 | ```python 116 | s = "Python syntax highlighting" 117 | print s 118 | ``` 119 | 120 |
121 | 122 | ##### Blockquote 123 | 124 | > This is a blockquote example. 125 | 126 |
127 | 128 | ##### Inline HTML 129 | 130 | You can also use raw HTML in your Markdown, and it'll mostly work pretty well. 131 | 132 |
133 |
Definition list
134 |
Is something people use sometimes.
135 | 136 |
Markdown in HTML
137 |
Does *not* work **very** well. Use HTML tags.
138 |
139 | 140 | 141 |
142 | 143 | ##### Tables 144 | 145 | Colons can be used to align columns. 146 | 147 | | Tables | Are | Cool | 148 | | ------------- |:-------------:| -----:| 149 | | col 3 is | right-aligned | $1600 | 150 | | col 2 is | centered | $12 | 151 | | zebra stripes | are neat | $1 | 152 | 153 | There must be at least 3 dashes separating each header cell. 154 | The outer pipes (|) are optional, and you don't need to make the 155 | raw Markdown line up prettily. You can also use inline Markdown. 156 | 157 | Markdown | Less | Pretty 158 | --- | --- | --- 159 | *Still* | `renders` | **nicely** 160 | 1 | 2 | 3 161 | 162 |
163 | 164 | ##### Image 165 | 166 | ![image](../../images/blog/post-6.jpg) 167 | 168 |
169 | 170 | ##### Youtube video 171 | 172 | {{< youtube C0DPdy98e4c >}} -------------------------------------------------------------------------------- /meh/exampleSite/content/english/blog/post-3.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "screens with built in Present and Dismiss animations." 3 | date: 2020-04-18T10:07:21+06:00 4 | # post image 5 | image: "images/blog/post-3.jpg" 6 | # post type (regular/featured) 7 | type: "regular" 8 | # meta description 9 | description: "This is meta description" 10 | # post draft 11 | draft: false 12 | --- 13 | 14 | 15 | #### Heading example 16 | 17 | Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6. 18 | 19 | # Heading 1 20 |
21 | 22 | ## Heading 2 23 | 24 |
25 | 26 | ### Heading 3 27 | 28 |
29 | 30 | #### Heading 4 31 | 32 |
33 | 34 | ##### Heading 5 35 | 36 |
37 | 38 | ###### Heading 6 39 | 40 | 41 |
42 | 43 | ##### Emphasis 44 | 45 | Emphasis, aka italics, with *asterisks* or _underscores_. 46 | 47 | Strong emphasis, aka bold, with **asterisks** or __underscores__. 48 | 49 | Combined emphasis with **asterisks and _underscores_**. 50 | 51 | Strikethrough uses two tildes. ~~Scratch this.~~ 52 | 53 |
54 | 55 | ##### Link 56 | [I'm an inline-style link](https://www.google.com) 57 | 58 | [I'm an inline-style link with title](https://www.google.com "Google's Homepage") 59 | 60 | [I'm a reference-style link][Arbitrary case-insensitive reference text] 61 | 62 | [I'm a relative reference to a repository file](../blob/master/LICENSE) 63 | 64 | [You can use numbers for reference-style link definitions][1] 65 | 66 | Or leave it empty and use the [link text itself]. 67 | 68 | URLs and URLs in angle brackets will automatically get turned into links. 69 | http://www.example.com or and sometimes 70 | example.com (but not on Github, for example). 71 | 72 | Some text to show that the reference links can follow later. 73 | 74 | [arbitrary case-insensitive reference text]: https://www.themefisher.com 75 | [1]: https://gethugothemes.com 76 | [link text itself]: https://www.getjekyllthemes.com 77 | 78 |
79 | 80 | ##### Paragraph 81 | 82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam. 83 | 84 |
85 | 86 | ##### Ordered List 87 | 88 | 1. List item 89 | 2. List item 90 | 3. List item 91 | 4. List item 92 | 5. List item 93 | 94 |
95 | 96 | ##### Unordered List 97 | 98 | * List item 99 | * List item 100 | * List item 101 | * List item 102 | * List item 103 | 104 |
105 | 106 | ##### Code and Syntax Highlighting 107 | 108 | Inline `code` has `back-ticks around` it. 109 | 110 | ```javascript 111 | var s = "JavaScript syntax highlighting"; 112 | alert(s); 113 | ``` 114 | 115 | ```python 116 | s = "Python syntax highlighting" 117 | print s 118 | ``` 119 | 120 |
121 | 122 | ##### Blockquote 123 | 124 | > This is a blockquote example. 125 | 126 |
127 | 128 | ##### Inline HTML 129 | 130 | You can also use raw HTML in your Markdown, and it'll mostly work pretty well. 131 | 132 |
133 |
Definition list
134 |
Is something people use sometimes.
135 | 136 |
Markdown in HTML
137 |
Does *not* work **very** well. Use HTML tags.
138 |
139 | 140 | 141 |
142 | 143 | ##### Tables 144 | 145 | Colons can be used to align columns. 146 | 147 | | Tables | Are | Cool | 148 | | ------------- |:-------------:| -----:| 149 | | col 3 is | right-aligned | $1600 | 150 | | col 2 is | centered | $12 | 151 | | zebra stripes | are neat | $1 | 152 | 153 | There must be at least 3 dashes separating each header cell. 154 | The outer pipes (|) are optional, and you don't need to make the 155 | raw Markdown line up prettily. You can also use inline Markdown. 156 | 157 | Markdown | Less | Pretty 158 | --- | --- | --- 159 | *Still* | `renders` | **nicely** 160 | 1 | 2 | 3 161 | 162 |
163 | 164 | ##### Image 165 | 166 | ![image](../../images/blog/post-6.jpg) 167 | 168 |
169 | 170 | ##### Youtube video 171 | 172 | {{< youtube C0DPdy98e4c >}} -------------------------------------------------------------------------------- /meh/exampleSite/content/english/blog/post-4.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adversus is a web-based dialer and practical CRM solution" 3 | date: 2020-04-18T10:07:21+06:00 4 | # post image 5 | image: "images/blog/post-4.jpg" 6 | # post type (regular/featured) 7 | type: "regular" 8 | # meta description 9 | description: "This is meta description" 10 | # post draft 11 | draft: false 12 | --- 13 | 14 | 15 | #### Heading example 16 | 17 | Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6. 18 | 19 | # Heading 1 20 |
21 | 22 | ## Heading 2 23 | 24 |
25 | 26 | ### Heading 3 27 | 28 |
29 | 30 | #### Heading 4 31 | 32 |
33 | 34 | ##### Heading 5 35 | 36 |
37 | 38 | ###### Heading 6 39 | 40 | 41 |
42 | 43 | ##### Emphasis 44 | 45 | Emphasis, aka italics, with *asterisks* or _underscores_. 46 | 47 | Strong emphasis, aka bold, with **asterisks** or __underscores__. 48 | 49 | Combined emphasis with **asterisks and _underscores_**. 50 | 51 | Strikethrough uses two tildes. ~~Scratch this.~~ 52 | 53 |
54 | 55 | ##### Link 56 | [I'm an inline-style link](https://www.google.com) 57 | 58 | [I'm an inline-style link with title](https://www.google.com "Google's Homepage") 59 | 60 | [I'm a reference-style link][Arbitrary case-insensitive reference text] 61 | 62 | [I'm a relative reference to a repository file](../blob/master/LICENSE) 63 | 64 | [You can use numbers for reference-style link definitions][1] 65 | 66 | Or leave it empty and use the [link text itself]. 67 | 68 | URLs and URLs in angle brackets will automatically get turned into links. 69 | http://www.example.com or and sometimes 70 | example.com (but not on Github, for example). 71 | 72 | Some text to show that the reference links can follow later. 73 | 74 | [arbitrary case-insensitive reference text]: https://www.themefisher.com 75 | [1]: https://gethugothemes.com 76 | [link text itself]: https://www.getjekyllthemes.com 77 | 78 |
79 | 80 | ##### Paragraph 81 | 82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam. 83 | 84 |
85 | 86 | ##### Ordered List 87 | 88 | 1. List item 89 | 2. List item 90 | 3. List item 91 | 4. List item 92 | 5. List item 93 | 94 |
95 | 96 | ##### Unordered List 97 | 98 | * List item 99 | * List item 100 | * List item 101 | * List item 102 | * List item 103 | 104 |
105 | 106 | ##### Code and Syntax Highlighting 107 | 108 | Inline `code` has `back-ticks around` it. 109 | 110 | ```javascript 111 | var s = "JavaScript syntax highlighting"; 112 | alert(s); 113 | ``` 114 | 115 | ```python 116 | s = "Python syntax highlighting" 117 | print s 118 | ``` 119 | 120 |
121 | 122 | ##### Blockquote 123 | 124 | > This is a blockquote example. 125 | 126 |
127 | 128 | ##### Inline HTML 129 | 130 | You can also use raw HTML in your Markdown, and it'll mostly work pretty well. 131 | 132 |
133 |
Definition list
134 |
Is something people use sometimes.
135 | 136 |
Markdown in HTML
137 |
Does *not* work **very** well. Use HTML tags.
138 |
139 | 140 | 141 |
142 | 143 | ##### Tables 144 | 145 | Colons can be used to align columns. 146 | 147 | | Tables | Are | Cool | 148 | | ------------- |:-------------:| -----:| 149 | | col 3 is | right-aligned | $1600 | 150 | | col 2 is | centered | $12 | 151 | | zebra stripes | are neat | $1 | 152 | 153 | There must be at least 3 dashes separating each header cell. 154 | The outer pipes (|) are optional, and you don't need to make the 155 | raw Markdown line up prettily. You can also use inline Markdown. 156 | 157 | Markdown | Less | Pretty 158 | --- | --- | --- 159 | *Still* | `renders` | **nicely** 160 | 1 | 2 | 3 161 | 162 |
163 | 164 | ##### Image 165 | 166 | ![image](../../images/blog/post-6.jpg) 167 | 168 |
169 | 170 | ##### Youtube video 171 | 172 | {{< youtube C0DPdy98e4c >}} -------------------------------------------------------------------------------- /meh/exampleSite/content/english/blog/post-5.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adversus is a web-based dialer and practical CRM solution" 3 | date: 2020-04-18T10:07:21+06:00 4 | # post image 5 | image: "images/blog/post-5.jpg" 6 | # post type (regular/featured) 7 | type: "regular" 8 | # meta description 9 | description: "This is meta description" 10 | # post draft 11 | draft: false 12 | --- 13 | 14 | 15 | #### Heading example 16 | 17 | Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6. 18 | 19 | # Heading 1 20 |
21 | 22 | ## Heading 2 23 | 24 |
25 | 26 | ### Heading 3 27 | 28 |
29 | 30 | #### Heading 4 31 | 32 |
33 | 34 | ##### Heading 5 35 | 36 |
37 | 38 | ###### Heading 6 39 | 40 | 41 |
42 | 43 | ##### Emphasis 44 | 45 | Emphasis, aka italics, with *asterisks* or _underscores_. 46 | 47 | Strong emphasis, aka bold, with **asterisks** or __underscores__. 48 | 49 | Combined emphasis with **asterisks and _underscores_**. 50 | 51 | Strikethrough uses two tildes. ~~Scratch this.~~ 52 | 53 |
54 | 55 | ##### Link 56 | [I'm an inline-style link](https://www.google.com) 57 | 58 | [I'm an inline-style link with title](https://www.google.com "Google's Homepage") 59 | 60 | [I'm a reference-style link][Arbitrary case-insensitive reference text] 61 | 62 | [I'm a relative reference to a repository file](../blob/master/LICENSE) 63 | 64 | [You can use numbers for reference-style link definitions][1] 65 | 66 | Or leave it empty and use the [link text itself]. 67 | 68 | URLs and URLs in angle brackets will automatically get turned into links. 69 | http://www.example.com or and sometimes 70 | example.com (but not on Github, for example). 71 | 72 | Some text to show that the reference links can follow later. 73 | 74 | [arbitrary case-insensitive reference text]: https://www.themefisher.com 75 | [1]: https://gethugothemes.com 76 | [link text itself]: https://www.getjekyllthemes.com 77 | 78 |
79 | 80 | ##### Paragraph 81 | 82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam. 83 | 84 |
85 | 86 | ##### Ordered List 87 | 88 | 1. List item 89 | 2. List item 90 | 3. List item 91 | 4. List item 92 | 5. List item 93 | 94 |
95 | 96 | ##### Unordered List 97 | 98 | * List item 99 | * List item 100 | * List item 101 | * List item 102 | * List item 103 | 104 |
105 | 106 | ##### Code and Syntax Highlighting 107 | 108 | Inline `code` has `back-ticks around` it. 109 | 110 | ```javascript 111 | var s = "JavaScript syntax highlighting"; 112 | alert(s); 113 | ``` 114 | 115 | ```python 116 | s = "Python syntax highlighting" 117 | print s 118 | ``` 119 | 120 |
121 | 122 | ##### Blockquote 123 | 124 | > This is a blockquote example. 125 | 126 |
127 | 128 | ##### Inline HTML 129 | 130 | You can also use raw HTML in your Markdown, and it'll mostly work pretty well. 131 | 132 |
133 |
Definition list
134 |
Is something people use sometimes.
135 | 136 |
Markdown in HTML
137 |
Does *not* work **very** well. Use HTML tags.
138 |
139 | 140 | 141 |
142 | 143 | ##### Tables 144 | 145 | Colons can be used to align columns. 146 | 147 | | Tables | Are | Cool | 148 | | ------------- |:-------------:| -----:| 149 | | col 3 is | right-aligned | $1600 | 150 | | col 2 is | centered | $12 | 151 | | zebra stripes | are neat | $1 | 152 | 153 | There must be at least 3 dashes separating each header cell. 154 | The outer pipes (|) are optional, and you don't need to make the 155 | raw Markdown line up prettily. You can also use inline Markdown. 156 | 157 | Markdown | Less | Pretty 158 | --- | --- | --- 159 | *Still* | `renders` | **nicely** 160 | 1 | 2 | 3 161 | 162 |
163 | 164 | ##### Image 165 | 166 | ![image](../../images/blog/post-6.jpg) 167 | 168 |
169 | 170 | ##### Youtube video 171 | 172 | {{< youtube C0DPdy98e4c >}} -------------------------------------------------------------------------------- /meh/exampleSite/content/english/blog/post-6.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Adversus is a web-based dialer and practical CRM solution" 3 | date: 2020-04-18T10:07:21+06:00 4 | # post image 5 | image: "images/blog/post-6.jpg" 6 | # post type (regular/featured) 7 | type: "regular" 8 | # meta description 9 | description: "This is meta description" 10 | # post draft 11 | draft: false 12 | --- 13 | 14 | 15 | #### Heading example 16 | 17 | Here is example of hedings. You can use this heading by following markdownify rules. For example: use `#` for heading 1 and use `######` for heading 6. 18 | 19 | # Heading 1 20 |
21 | 22 | ## Heading 2 23 | 24 |
25 | 26 | ### Heading 3 27 | 28 |
29 | 30 | #### Heading 4 31 | 32 |
33 | 34 | ##### Heading 5 35 | 36 |
37 | 38 | ###### Heading 6 39 | 40 | 41 |
42 | 43 | ##### Emphasis 44 | 45 | Emphasis, aka italics, with *asterisks* or _underscores_. 46 | 47 | Strong emphasis, aka bold, with **asterisks** or __underscores__. 48 | 49 | Combined emphasis with **asterisks and _underscores_**. 50 | 51 | Strikethrough uses two tildes. ~~Scratch this.~~ 52 | 53 |
54 | 55 | ##### Link 56 | [I'm an inline-style link](https://www.google.com) 57 | 58 | [I'm an inline-style link with title](https://www.google.com "Google's Homepage") 59 | 60 | [I'm a reference-style link][Arbitrary case-insensitive reference text] 61 | 62 | [I'm a relative reference to a repository file](../blob/master/LICENSE) 63 | 64 | [You can use numbers for reference-style link definitions][1] 65 | 66 | Or leave it empty and use the [link text itself]. 67 | 68 | URLs and URLs in angle brackets will automatically get turned into links. 69 | http://www.example.com or and sometimes 70 | example.com (but not on Github, for example). 71 | 72 | Some text to show that the reference links can follow later. 73 | 74 | [arbitrary case-insensitive reference text]: https://www.themefisher.com 75 | [1]: https://gethugothemes.com 76 | [link text itself]: https://www.getjekyllthemes.com 77 | 78 |
79 | 80 | ##### Paragraph 81 | 82 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam. 83 | 84 |
85 | 86 | ##### Ordered List 87 | 88 | 1. List item 89 | 2. List item 90 | 3. List item 91 | 4. List item 92 | 5. List item 93 | 94 |
95 | 96 | ##### Unordered List 97 | 98 | * List item 99 | * List item 100 | * List item 101 | * List item 102 | * List item 103 | 104 |
105 | 106 | ##### Code and Syntax Highlighting 107 | 108 | Inline `code` has `back-ticks around` it. 109 | 110 | ```javascript 111 | var s = "JavaScript syntax highlighting"; 112 | alert(s); 113 | ``` 114 | 115 | ```python 116 | s = "Python syntax highlighting" 117 | print s 118 | ``` 119 | 120 |
121 | 122 | ##### Blockquote 123 | 124 | > This is a blockquote example. 125 | 126 |
127 | 128 | ##### Inline HTML 129 | 130 | You can also use raw HTML in your Markdown, and it'll mostly work pretty well. 131 | 132 |
133 |
Definition list
134 |
Is something people use sometimes.
135 | 136 |
Markdown in HTML
137 |
Does *not* work **very** well. Use HTML tags.
138 |
139 | 140 | 141 |
142 | 143 | ##### Tables 144 | 145 | Colons can be used to align columns. 146 | 147 | | Tables | Are | Cool | 148 | | ------------- |:-------------:| -----:| 149 | | col 3 is | right-aligned | $1600 | 150 | | col 2 is | centered | $12 | 151 | | zebra stripes | are neat | $1 | 152 | 153 | There must be at least 3 dashes separating each header cell. 154 | The outer pipes (|) are optional, and you don't need to make the 155 | raw Markdown line up prettily. You can also use inline Markdown. 156 | 157 | Markdown | Less | Pretty 158 | --- | --- | --- 159 | *Still* | `renders` | **nicely** 160 | 1 | 2 | 3 161 | 162 |
163 | 164 | ##### Image 165 | 166 | ![image](../../images/blog/post-6.jpg) 167 | 168 |
169 | 170 | ##### Youtube video 171 | 172 | {{< youtube C0DPdy98e4c >}} -------------------------------------------------------------------------------- /meh/exampleSite/content/english/contact/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contact Us" 3 | subtitle: "" 4 | # meta description 5 | description: "This is meta description" 6 | draft: false 7 | --- 8 | 9 | 10 | ### Why you should contact us! 11 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit recusandae voluptates doloremque veniam temporibus porro culpa ipsa, nisi soluta minima saepe laboriosam debitis nesciunt. 12 | 13 | * **Phone: +88 125 256 452** 14 | * **Mail: info@bigspring.com** 15 | * **Address: 360 Main rd, Rio, Brazil** -------------------------------------------------------------------------------- /meh/exampleSite/content/english/faq/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Frequently Asked Questions" 3 | subtitle: "" 4 | # meta description 5 | description: "This is meta description" 6 | draft: false 7 | --- 8 | 9 | 10 | {{< faq "Will updates also be free?" >}} 11 | Lorem, [link](https://examplesite.com) _ipsum_ dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 12 | {{}} 13 | 14 | {{< faq "Discounts for students and Non Profit Organizations?" >}} 15 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 16 | {{}} 17 | 18 | {{< faq "I need something unique, Can you make it?" >}} 19 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 20 | {{}} 21 | 22 | {{< faq "Is there any documentation and support?" >}} 23 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 24 | {{}} 25 | 26 | {{< faq "Any refunds?" >}} 27 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 28 | {{}} 29 | 30 | {{< faq "What is a product key?" >}} 31 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 32 | {{}} 33 | 34 | {{< faq "Where do I download the file to?" >}} 35 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 36 | {{}} 37 | 38 | {{< faq "Any refunds?" >}} 39 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque praesentium nisi officiis maiores quia sapiente totam omnis vel sequi corporis ipsa incidunt reprehenderit recusandae maxime perspiciatis iste placeat architecto, mollitia delectus [link](https://examplesite.com) ut ab quibusdam. Magnam cumque numquam tempore reprehenderit illo, unde cum omnis vel sed temporibus, repudiandae impedit nam ad enim porro, qui labore fugiat quod suscipit fuga necessitatibus. Perferendis, ipsum? Cum, reprehenderit. Sapiente atque quam vitae, magnam dolore consequatur temporibus harum odit ab id quo qui aspernatur aliquid officiis sit error asperiores eveniet quibusdam, accusantium enim recusandae quas ea est! Quaerat omnis, placeat vitae laboriosam doloremque recusandae mollitia minima! 40 | {{}} -------------------------------------------------------------------------------- /meh/exampleSite/content/english/pricing/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Pricing" 3 | subtitle: "" 4 | # meta description 5 | description: "This is meta description" 6 | draft: false 7 | 8 | basic: 9 | name : "Basic Plan" 10 | price: "$49" 11 | price_per : "month" 12 | info : "Best For Small Individuals" 13 | services: 14 | - "Express Service" 15 | - "Customs Clearance" 16 | - "Time-Critical Services" 17 | button: 18 | enable : true 19 | label : "Get started for free" 20 | link : "#" 21 | 22 | professional: 23 | name : "Professional Plan" 24 | price: "$49" 25 | price_per : "month" 26 | info : "Best For Professionals" 27 | services: 28 | - "Express Service" 29 | - "Customs Clearance" 30 | - "Time-Critical Services" 31 | - "Cloud Service" 32 | - "Best Dashboard" 33 | button: 34 | enable : true 35 | label : "Get started for free" 36 | link : "#" 37 | 38 | business: 39 | name : "Business Plan" 40 | price: "$49" 41 | price_per : "month" 42 | info : "Best For Large Individuals" 43 | services: 44 | - "Express Service" 45 | - "Customs Clearance" 46 | - "Time-Critical Services" 47 | button: 48 | enable : true 49 | label : "Get started for free" 50 | link : "#" 51 | 52 | call_to_action: 53 | enable : true 54 | title : "Need a larger plan?" 55 | image : "images/cta.svg" 56 | content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consequat tristique eget amet, tempus eu at consecttur." 57 | button: 58 | enable : true 59 | label : "Contact Us" 60 | link : "contact" 61 | --- -------------------------------------------------------------------------------- /meh/exampleSite/content/english/privacy-policy/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Privacy & Policy" 3 | subtitle: "" 4 | # meta description 5 | description: "This is meta description" 6 | draft: false 7 | --- 8 | 9 | #### Responsibility of Contributors 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 12 | 13 | pretium, aliquam sit. Praesent elementum magna amet, tincidunt eros, nibh in leo. Malesuada purus, lacus, at aliquam suspendisse tempus. Quis tempus amet, velit nascetur sollicitudin. At sollicitudin eget amet in. Eu velit nascetur sollicitudin erhdfvssfvrgss eget viverra nec elementum. Lacus, facilisis tristique lectus in. 14 | 15 | #### Gathering of Personal Information 16 | 17 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 18 | 19 | #### Protection of Personal- Information 20 | 21 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. 22 | 23 | Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat 25 | 26 | #### Privacy Policy Changes 27 | 28 | 1. Sll the Themefisher items are designed to be with the latest , We check all 29 | 2. comments that threaten or harm the reputation of any person or organization 30 | 3. personal information including, but limited to, email addresses, telephone numbers 31 | 4. Any Update come in The technology Customer will get automatic Notification. 32 | -------------------------------------------------------------------------------- /meh/exampleSite/content/english/terms-conditions/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Terms of Service" 3 | subtitle: "" 4 | # meta description 5 | description: "This is meta description" 6 | draft: false 7 | --- 8 | 9 | #### Responsibility of Contributors 10 | 11 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 12 | 13 | pretium, aliquam sit. Praesent elementum magna amet, tincidunt eros, nibh in leo. Malesuada purus, lacus, at aliquam suspendisse tempus. Quis tempus amet, velit nascetur sollicitudin. At sollicitudin eget amet in. Eu velit nascetur sollicitudin erhdfvssfvrgss eget viverra nec elementum. Lacus, facilisis tristique lectus in. 14 | 15 | #### Gathering of Personal Information 16 | 17 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 18 | 19 | #### Protection of Personal- Information 20 | 21 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat quisque aliquam sagittis. Sem turpis sed viverra massa gravida pharetra. Non dui dolor potenti eu dignissim fusce. Ultrices amet, in curabitur a arcu a lectus morbi id. Iaculis erat sagittis in tortor cursus. 22 | 23 | Molestie urna eu tortor, erat scelerisque eget. Nunc hendrerit sed interdum lacus. Lorem quis viverra sed 24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Purus, donec nunc eros, ullamcorper id feugiat 25 | 26 | #### Privacy Policy Changes 27 | 28 | 1. Sll the Themefisher items are designed to be with the latest , We check all 29 | 2. comments that threaten or harm the reputation of any person or organization 30 | 3. personal information including, but limited to, email addresses, telephone numbers 31 | 4. Any Update come in The technology Customer will get automatic Notification. -------------------------------------------------------------------------------- /meh/exampleSite/netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "public" 3 | command = "hugo --minify --gc" 4 | 5 | [build.environment] 6 | HUGO_VERSION = "0.87.0" 7 | HUGO_BASEURL = "/" 8 | 9 | [[headers]] 10 | for = "/*" # This defines which paths this specific [[headers]] block will cover. 11 | 12 | [headers.values] 13 | X-Frame-Options = "DENY" 14 | X-XSS-Protection = "1; mode=block" 15 | Referrer-Policy = "same-origin" 16 | Strict-Transport-Security = "max-age=31536000; includeSubDomains; preload" -------------------------------------------------------------------------------- /meh/exampleSite/static/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/blog/post-1.jpg -------------------------------------------------------------------------------- /meh/exampleSite/static/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/blog/post-2.jpg -------------------------------------------------------------------------------- /meh/exampleSite/static/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/blog/post-3.jpg -------------------------------------------------------------------------------- /meh/exampleSite/static/images/blog/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/blog/post-4.jpg -------------------------------------------------------------------------------- /meh/exampleSite/static/images/blog/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/blog/post-5.jpg -------------------------------------------------------------------------------- /meh/exampleSite/static/images/blog/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/blog/post-6.jpg -------------------------------------------------------------------------------- /meh/exampleSite/static/images/cta.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | -------------------------------------------------------------------------------- /meh/exampleSite/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/logo.png -------------------------------------------------------------------------------- /meh/exampleSite/static/images/service-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/service-1.png -------------------------------------------------------------------------------- /meh/exampleSite/static/images/service-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/service-2.png -------------------------------------------------------------------------------- /meh/exampleSite/static/images/service-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/exampleSite/static/images/service-3.png -------------------------------------------------------------------------------- /meh/i18n/de.toml: -------------------------------------------------------------------------------- 1 | [readmore] 2 | other = "Weiterlesen" 3 | 4 | [translations] 5 | other="Übersetzungen" 6 | 7 | [error404] 8 | other = "Es tut uns wirklich leid aber hier scheint es nichts zu geben." 9 | 10 | [yourname] 11 | other = "Ihr Name" 12 | 13 | [youremail] 14 | other = "Ihre Email" 15 | 16 | [subject] 17 | other = "Betreff" 18 | 19 | [yourmessage] 20 | other = "Ihre Nachricht" 21 | 22 | [sendnow] 23 | other = "Abschicken" 24 | 25 | -------------------------------------------------------------------------------- /meh/i18n/en.toml: -------------------------------------------------------------------------------- 1 | [readmore] 2 | other = "Read more" 3 | 4 | [translations] 5 | other="Translations" 6 | 7 | [error404] 8 | other = "We are really sorry but there seems to be nothing here." 9 | 10 | [yourname] 11 | other = "Your Name" 12 | 13 | [youremail] 14 | other = "Your Email" 15 | 16 | [subject] 17 | other = "Subject" 18 | 19 | [yourmessage] 20 | other = "Your Message" 21 | 22 | [sendnow] 23 | other = "Send Now" 24 | -------------------------------------------------------------------------------- /meh/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/images/screenshot.png -------------------------------------------------------------------------------- /meh/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/merlinmann/wisdom/a04f95c1404e170f1133003f24b45c53a17b06cf/meh/images/tn.png -------------------------------------------------------------------------------- /meh/layouts/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ partial "head.html" . }} 5 | {{ partialCached "style.html" . }} 6 | 7 | 8 | 9 | {{- partial "preloader.html" . -}} 10 | {{- partial "header.html" . -}} 11 | 12 | 22 | 23 | {{- partial "footer.html" . -}} 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /meh/layouts/_default/baseof.html: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | {{ partial "head.html" . }} 15 | 16 | {{ if hugo.IsProduction }} 17 | {{ partialCached "style.html" . }} 18 | {{ else }} 19 | {{ partial "style.html" . }} 20 | {{ end }} 21 | 22 | 23 | 24 | 25 | {{ if hugo.IsProduction }} 26 | {{ partialCached "preloader.html" . }} 27 | {{ else }} 28 | {{ partial "preloader.html" . }} 29 | {{ end }} 30 | {{ partial "header.html" . }} 31 | 32 |
33 | {{ block "main" . }}{{ end }} 34 |
35 | 36 | {{ if hugo.IsProduction }} 37 | {{ partialCached "footer.html" . }} 38 | {{ partialCached "script.html" . }} 39 | {{ else }} 40 | {{ partial "footer.html" . }} 41 | {{ partial "script.html" . }} 42 | {{ end }} 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /meh/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-header.html" . }} 4 | 5 | 6 | {{ if or (or (eq .Section "post") (eq .Section "blog") (eq .Type site.Params.blogCategoryType)) (or (eq .Section "categories") (eq .Section "tags") )}} 7 | 8 |
9 |
10 |
11 | {{ range first 1 (where .Data.Pages "Type" "featured") }} 12 |
13 |
14 |
15 | {{.Title}} 16 |
17 |
18 |

{{ .Title }}

19 |

{{ .Summary }}

20 | {{ i18n "readmore" }} 21 |
22 |
23 |
24 | {{ end }} 25 | {{ $paginator := .Paginate (where .Data.Pages "Type" "!=" "featured") }} 26 | {{ range $paginator.Pages }} 27 |
28 |
29 | {{ .Title }} 30 |
31 |

{{ .Title }}

32 |

{{ .Summary }}

33 | {{ i18n "readmore" }} 34 |
35 |
36 |
37 | {{ end }} 38 |
39 | {{ template "_internal/pagination.html" . }} 40 |
41 |
42 |
43 |
44 | 45 | 46 | {{ else }} 47 |
48 |
49 |
50 |
51 |
{{ .Content }}
52 |
53 |
54 |
55 |
56 | {{ end }} 57 | 58 | {{ end }} -------------------------------------------------------------------------------- /meh/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | 4 | {{ if or (or (eq .Section "post") (eq .Section "blog")) (or (eq .Section "categories") (eq .Section "tags") )}} 5 | 6 |
7 |
8 |
9 |
10 | {{ .Title }} 11 |

{{ .Title }}

12 |
{{.Content}}
13 | 14 | 15 | {{ if site.DisqusShortname }} 16 |
17 | {{ template "_internal/disqus.html" . }} 18 |
19 | {{ end }} 20 |
21 |
22 |
23 |
24 | 25 | 26 | {{ else }} 27 | {{ partial "page-header.html" . }} 28 |
29 |
30 |
31 |
32 |
{{ .Content }}
33 |
34 |
35 |
36 |
37 | {{ end }} 38 | 39 | 40 | {{ end }} -------------------------------------------------------------------------------- /meh/layouts/contact/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-header.html" . }} 4 |
5 |
6 |
7 |
8 |
9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 | 17 |
18 | {{ .Content }} 19 |
20 |
21 |
22 |
23 | 24 | {{ end }} -------------------------------------------------------------------------------- /meh/layouts/faq/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | {{ partial "page-header.html" . }} 3 | 4 | {{ "" | safeHTML }} 5 |
6 |
7 |
8 | {{ .Content }} 9 |
10 |
11 |
12 | {{ "" | safeHTML }} 13 | 14 | 15 | 16 | 17 | 18 | 19 | {{ end }} -------------------------------------------------------------------------------- /meh/layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | 4 | {{ with .Params.banner }} 5 | 22 | {{ end }} 23 | 24 | 25 | 26 | {{ with .Params.feature }} 27 | {{ if .enable }} 28 |
29 |
30 |
31 |
32 |

{{ .title | markdownify }}

33 |
34 | {{ range .feature_item }} 35 |
36 |
37 | 38 |

{{ .name | title }}

39 |

{{ .content | markdownify }}

40 |
41 |
42 | {{ end }} 43 |
44 |
45 |
46 | {{ end }} 47 | {{ end }} 48 | 49 | 50 | 51 | {{ with .Params.service }} 52 | {{ if .enable }} 53 | {{ range $i,$p := .service_item }} 54 | {{if modBool $i 2}} 55 |
56 |
57 |
58 |
59 |

{{ .title | markdownify }}

60 |

{{ .content | markdownify }}

61 | {{ if .button.enable }} 62 | {{ with .button }} 63 | {{ .label }} 64 | {{ end }} 65 | {{ end }} 66 |
67 |
68 |
69 | {{ range .images }} 70 | 71 | {{ end }} 72 |
73 |
74 |
75 |
76 |
77 | {{ else }} 78 |
79 |
80 |
81 |
82 |
83 | {{ range .images }} 84 | 85 | {{ end }} 86 |
87 |
88 |
89 |

{{ .title | markdownify }}

90 |

{{ .content | markdownify }}

91 | {{ if .button.enable }} 92 | {{ with .button }} 93 | {{ .label }} 94 | {{ end }} 95 | {{ end }} 96 |
97 |
98 |
99 |
100 | {{ end }} 101 | {{ end }} 102 | {{ end }} 103 | {{ end }} 104 | 105 | 106 | 107 | {{ with .Params.screenshot }} 108 | {{ if .enable }} 109 |
110 |
111 |
112 |
113 |

{{ .title | markdownify }}

114 |
115 |
116 |
117 | {{ with .image }} {{ end }} 118 |
119 | {{ end }} 120 | {{ end }} 121 | 122 | 123 | 124 | {{ with .Params.call_to_action }} 125 | {{ if .enable }} 126 |
127 |
128 |
129 |
130 | 131 |
132 |
133 |

{{ .title | markdownify }}

134 | {{with .content }}

{{ . | markdownify }}

{{ end }} 135 | {{ if .button.enable }} 136 | {{ with .button }} 137 | {{ .label }} 138 | {{ end }} 139 | {{ end }} 140 |
141 |
142 |
143 |
144 | {{ end }} 145 | {{ end }} 146 | 147 | 148 | {{ end }} 149 | -------------------------------------------------------------------------------- /meh/layouts/partials/footer.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | {{ if site.Menus.footer_left }} 6 |
{{ site.Params.footer_menu_left }}
7 | 12 | {{ end }} 13 |
14 |
15 | {{ if site.Menus.footer_middle }} 16 |
{{ site.Params.footer_menu_middle }}
17 | 22 | {{ end }} 23 |
24 |
25 | {{ if site.Menus.footer_right }} 26 |
{{ site.Params.footer_menu_right }}
27 | 32 | {{ end }} 33 |
34 |
35 | 36 | {{ with site.Params.logo}} 37 | {{ site.Title }} 38 | {{ else }}{{site.Title}}{{end}} 39 | 40 |

{{ site.Params.footer_content | markdownify }}

41 | {{ with site.Params.social }} 42 | 47 | {{ end }} 48 |
49 |
50 |
51 | {{ site.Params.Copyright | markdownify }} 52 |
53 |
54 |
-------------------------------------------------------------------------------- /meh/layouts/partials/head.html: -------------------------------------------------------------------------------- 1 | 2 | {{.Title | default site.Title}} 3 | 4 | 5 | {{ if or (eq site.BaseURL "/") (eq site.BaseURL "http://localhost:1313/") (eq site.BaseURL "http://examplesite.org/") (eq site.BaseURL "https://examplesite.org/") (eq site.BaseURL "http://examplesite.com/") (eq site.BaseURL "https://examplesite.com/")}}{{else}} 6 | 7 | {{ end }} 8 | 9 | 10 | 11 | {{ if .IsTranslated }} 12 | {{ range .AllTranslations }} 13 | 14 | {{ end }} 15 | 16 | {{ end }} 17 | 18 | {{ with site.Params.author }} 19 | {{ end }} 20 | {{ hugo.Generator }} 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | {{ "" | safeHTML }} 33 | {{ $image_path := .Params.image | default site.Params.image -}} 34 | {{ $image_path_local := printf "static/%s" $image_path -}} 35 | {{ $image_ext := trim (path.Ext $image_path | lower) "." -}} 36 | {{ if fileExists $image_path_local -}} 37 | 38 | {{/* If not SVG, read image aspect ratio and define Twitter Card and Open Graph width and height */ -}} 39 | {{ if ne $image_ext "svg" -}} 40 | {{ with (imageConfig $image_path_local) -}} 41 | {{ if (and (gt .Width 144) (gt .Height 144)) -}} 42 | 43 | 44 | {{ end -}} 45 | 46 | 47 | {{ end -}} 48 | {{ end -}} 49 | 50 | {{ end -}} 51 | 52 | 53 | {{ with site.Social.twitter -}}{{ end -}} 54 | {{ range site.Authors }} 55 | {{ with .twitter -}}{{ end -}} 56 | {{ end -}} 57 | 58 | {{ template "_internal/opengraph.html" . }} 59 | 60 | 61 | {{ template "_internal/google_analytics.html" . }} -------------------------------------------------------------------------------- /meh/layouts/partials/header.html: -------------------------------------------------------------------------------- 1 | {{ "" | safeHTML }} 2 | 68 | {{ "" | safeHTML }} -------------------------------------------------------------------------------- /meh/layouts/partials/page-header.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

{{ .Title | markdownify }}

4 | {{ with .Params.subtitle }} 5 |

{{ . | markdownify }}

6 | {{ end }} 7 |
8 |
-------------------------------------------------------------------------------- /meh/layouts/partials/preloader.html: -------------------------------------------------------------------------------- 1 | {{ if site.Params.preloader.enable }} 2 | {{ "" | safeHTML }} 3 |
4 | {{ with site.Params.preloader.preloader }} 5 | preloader 6 | {{ end }} 7 |
8 | {{ "" | safeHTML }} 9 | {{ end }} -------------------------------------------------------------------------------- /meh/layouts/partials/script.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{$pf:= site.Params.variables.primary_font}} 4 | {{$sf:= site.Params.variables.secondary_font}} 5 | 17 | 18 | 19 | {{ $scripts := slice }} 20 | {{ range site.Params.plugins.js}} 21 | {{ if findRE "^http" .link }} 22 | 23 | {{ else }} 24 | {{ $scripts = $scripts | append (resources.Get .link) }} 25 | {{ end }} 26 | {{ end }} 27 | {{ $scripts := $scripts | append (resources.Get "js/script.js" | minify) }} 28 | {{ $scripts := $scripts | resources.Concat "/js/script.js" | minify | fingerprint "sha512" }} 29 | 30 | 31 | 32 | {{ with site.Params.cookies }} 33 | {{ if .enable }} 34 | 35 | 38 | 53 | 54 | 55 | 73 | {{ end }} 74 | {{ end }} -------------------------------------------------------------------------------- /meh/layouts/partials/style.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | {{ $styles := slice }} 22 | {{ range site.Params.plugins.css }} 23 | {{ if findRE "^http" .link }} 24 | 25 | {{ else }} 26 | {{ $styles = $styles | append (resources.Get .link) }} 27 | {{ end }} 28 | {{ end }} 29 | {{ $styles := $styles | append (resources.Get "scss/style.scss" | resources.ExecuteAsTemplate "style.scss" . | toCSS) }} 30 | {{ $styles := $styles | resources.Concat "/css/style.css" | minify | fingerprint "sha512"}} 31 | 32 | 33 | -------------------------------------------------------------------------------- /meh/layouts/pricing/list.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 | 3 | {{ partial "page-header.html" . }} 4 |
5 |
6 |
7 |
8 | {{ with .Params.basic }} 9 |
10 |
11 |

{{ .name | markdownify }}

12 | {{ .price }}/{{ .price_per }} 13 |

{{ .info | markdownify }}

14 |
    15 | {{ range .services }} 16 |
  • {{ . | markdownify }}
  • 17 | {{ end }} 18 |
19 | {{ if .button.enable }} 20 | {{ with .button }} 21 | {{ .label }} 22 | {{ end }} 23 | {{ end }} 24 |
25 |
26 | {{ end }} 27 |
28 | 49 |
50 | {{ with .Params.business }} 51 |
52 |
53 |

{{ .name | markdownify }}

54 | {{ .price }}/{{ .price_per }} 55 |

{{ .info | markdownify }}

56 |
    57 | {{ range .services }} 58 |
  • {{ . | markdownify }}
  • 59 | {{ end }} 60 |
61 | {{ if .button.enable }} 62 | {{ with .button }} 63 | {{ .label }} 64 | {{ end }} 65 | {{ end }} 66 |
67 |
68 | {{ end }} 69 |
70 |
71 |
72 |
73 | 74 | 75 | {{ if .Params.call_to_action.enable }} 76 | {{ with .Params.call_to_action }} 77 |
78 |
79 |
80 |
81 | 82 |
83 |
84 |

{{ .title | markdownify }}

85 | {{with .content }}

{{ . | markdownify }}

{{ end }} 86 | {{ if .button.enable }} 87 | {{ with .button }} 88 | {{ .label }} 89 | {{ end }} 90 | {{ end }} 91 |
92 |
93 |
94 |
95 | {{ end }} 96 | {{ end }} 97 | 98 | 99 | {{ end }} -------------------------------------------------------------------------------- /meh/layouts/shortcodes/faq.html: -------------------------------------------------------------------------------- 1 | {{ $_hugo_config := `{ "version": 1 }` }} 2 | 3 |
4 |
5 |

{{ .Get 0 | markdownify }}

6 |

{{ .Inner | markdownify }}

7 |
8 |
-------------------------------------------------------------------------------- /meh/netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "exampleSite/public" 3 | command = "cd exampleSite && hugo --gc --themesDir ../.." 4 | 5 | [build.environment] 6 | HUGO_VERSION = "0.74.3" 7 | HUGO_THEME = "repo" 8 | HUGO_BASEURL = "/" -------------------------------------------------------------------------------- /meh/theme.toml: -------------------------------------------------------------------------------- 1 | name = "Bigspring Light" 2 | license = "MIT" 3 | licenselink = "https://github.com/themefisher/bigspring-light/blob/master/LICENSE" 4 | description = "Bigspring is a web development company Hugo theme. It is very stylish, responsive and ready to use theme. You can use this theme to create your contemporary web design studio, creative agency, advertising firm website. This theme has a very creative and well decorated landing page, Blog page, Contact page, Pricing page and many more." 5 | homepage = "https://gethugothemes.com/products/bigspring/" 6 | demosite = "https://demo.gethugothemes.com/bigspring-light/" 7 | tags = ['landing-page', 'fast', 'light', 'white', 'modern', 'themefisher', 'hugo-theme', 'hugo-templates', 'bootstrap', 'blog', 'responsive', 'clean', 'simple', 'creative', 'contact-form', 'custom-themes', 'mobile', 'minimalistic', 'pages', 'google analytics', 'customizable', 'flexbox', 'presentation', 'product', 'theme', 'typography', 'multilingual', 'gethugothemes'] 8 | features = ['bootstrap','responsive'] 9 | min_version = "0.64.0" 10 | 11 | [author] 12 | name = "Themefisher" 13 | homepage = "https://themefisher.com/" -------------------------------------------------------------------------------- /quotes.md: -------------------------------------------------------------------------------- 1 | 2 | # Some Good Quotes 3 | 4 | Never trust the advice of a man in difficulties. 5 | 6 | — Aesop, _The Fox and the Goat_ (~500 B.C.). 7 | 8 | We may give advice, but we cannot give conduct. 9 | 10 | — Benjamin Franklin, *Poor Richard's Almanack* (1758). 11 | 12 | *Quidquid præcipies esto brevis.* 13 | 14 | (Whatever advice you give, be short.) 15 | 16 | — Horace, *Ars Poetica* (18 BC), CCCXXXV. Reported in Hoyt's New Cyclopedia Of Practical Quotations (1922), p. 10-11. 17 | 18 | Advice is what we ask for when we already know the answer but wish we didn't... 19 | 20 | —Erica Jong, *How to Save Your Own Life* (1977). 21 | 22 | Play the opponent, not the cards. 23 | 24 | — Pam Beesly 25 | 26 | The physician can bury his mistakes, but the architect can only advise his clients to plant vines. 27 | 28 | — Frank Lloyd Wright, in *Oxford Dictionary of Humorous Quotations*, p. 19. 29 | 30 | If a man love to give advice, it is a sure sign that he himself wanteth it. 31 | 32 | — George Savile (1912) 33 | 34 | We are what we pretend to be, so we must be careful about what we pretend to be. 35 | 36 | ― Kurt Vonnegut (1962) 37 | 38 | I'm just as God made me, sir. 39 | 40 | — Hotel Desk Clerk (_This is Spinal Tap_, 1984) 41 | 42 | 43 | ---- 44 | 45 | 46 | 47 | I've been involved in a number of cults — both as a leader and a follower. You have more fun as a follower. But you make more money as a leader. 48 | 49 | — Creed Bratton (_The Office_) 50 | 51 | 52 | ---- 53 | 54 | 55 | 56 | "You are excrement. You can change yourself into gold." 57 | 58 | — _The Holy Mountain_ (1973) 59 | 60 | 61 | 62 | ---- 63 | 64 | 65 | > At all times keep your crap detector on. If I say something that helps, good. If what I say is of no help, let it go. Don’t start arguments. They are futile and take us away from our purpose. 66 | 67 | — Richard Hugo, _The Triggering Town_ (1979) -------------------------------------------------------------------------------- /touch/MBP 2022-01-10_13-40-56.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | MBP 2022-01-10_13-40-56 -------------------------------------------------------------------------------- /touch/MBP 2022-01-10_16-10-55.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | MBP 2022-01-10_16-10-55 -------------------------------------------------------------------------------- /touch/MacMini 2022-01-14_15-40-48.md: -------------------------------------------------------------------------------- 1 | Mac Mini 2022-01-14_15-40-48 -------------------------------------------------------------------------------- /touch/mac mini 2022-01-10_15-31-05.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | mac mini 2022-01-10_15-31-05 -------------------------------------------------------------------------------- /touch/mac mini 2022-01-12_13-29-22.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | mac mini 2022-01-12_13-29-22 -------------------------------------------------------------------------------- /touch/tester.md: -------------------------------------------------------------------------------- 1 | this is the tester 2 | 3 | TODO test 4 | 5 | UNDONE test 6 | 7 | HACK test 8 | 9 | // test test nine 9 10 | // todo test 10 11 | // TODO test 11 12 | // done test 12 13 | // hack test 13 14 | // done test 14 15 | // hack test 15 16 | 17 | MBP - 2022-01-05 19:51:37 18 | 19 | mini - 2022-01-03 11:17:39 20 | 21 | ![Your Author (detail)](/i/so_angry_-_960.jpg "Your Author") 22 | 23 | ![Your Author (detail)](/i/so%20angry%20-%20960.jpg "Your Author") 24 | 25 | ![Tux, the Linux mascot](/i/so_angry_-_960.jpg) 26 | 27 | 28 | https://github.com/merlinmann/wisdom/raw/master/i/so%20angry%20-%20960.jpg 29 | 30 | ![This is an image](https://myoctocat.com/assets/images/base-octocat.svg) 31 | 32 | 33 | --------------------------------------------------------------------------------