├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── logo.png ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.toml ├── gulpfile.js ├── netlify.toml ├── package.json ├── site ├── assets │ ├── js │ │ ├── main.js │ │ ├── matchMedia.js │ │ └── search.js │ ├── json │ │ └── index.json │ └── scss │ │ ├── _common.scss │ │ ├── _custom.scss │ │ ├── _error.scss │ │ ├── _functions.scss │ │ ├── _layout.scss │ │ ├── _mixins.scss │ │ ├── _reset.scss │ │ ├── _root.scss │ │ ├── _utils.scss │ │ ├── _variables.scss │ │ ├── components │ │ ├── _article.scss │ │ ├── _code.scss │ │ ├── _columns.scss │ │ ├── _dropdown.scss │ │ ├── _markdown.scss │ │ ├── _menu.scss │ │ ├── _pagelink.scss │ │ ├── _search.scss │ │ ├── _svg.scss │ │ ├── _toc.scss │ │ └── _ui.scss │ │ └── main.scss ├── content │ └── 5.0 │ │ ├── _index.md │ │ ├── customize.md │ │ ├── entries │ │ ├── _index.md │ │ ├── attachments.md │ │ ├── hooks.md │ │ ├── templates │ │ │ ├── _index.md │ │ │ ├── featured.md │ │ │ ├── hero.md │ │ │ └── product.md │ │ └── typography │ │ │ ├── _index.md │ │ │ ├── alerts.md │ │ │ ├── audio.md │ │ │ ├── blockquote.md │ │ │ ├── buttons.md │ │ │ ├── callout.md │ │ │ ├── code.md │ │ │ ├── columns.md │ │ │ ├── gallery.md │ │ │ ├── headings.md │ │ │ ├── images.md │ │ │ ├── lists.md │ │ │ ├── paragraph.md │ │ │ ├── separators.md │ │ │ ├── spoiler.md │ │ │ ├── table-of-contents.md │ │ │ ├── table.md │ │ │ ├── tabs.md │ │ │ ├── text-size.md │ │ │ └── video.md │ │ ├── pages │ │ ├── 404.md │ │ ├── _index.md │ │ └── contact.md │ │ ├── starting │ │ ├── _index.md │ │ ├── config.md │ │ ├── good-practices.md │ │ ├── install.md │ │ └── update.md │ │ ├── thanks.md │ │ ├── variables │ │ ├── _index.md │ │ ├── admin │ │ │ ├── _index.md │ │ │ ├── a-access.md │ │ │ ├── a-edit.md │ │ │ ├── a-jumpLink.md │ │ │ └── a-tools.md │ │ ├── cards │ │ │ ├── _index.md │ │ │ ├── e-cla-ratio.md │ │ │ ├── e-cols-min-list.md │ │ │ ├── e-cols-min.md │ │ │ ├── e-defined-tags.md │ │ │ ├── e-ga-ratio.md │ │ │ ├── e-line-clamp.md │ │ │ ├── e-meta.md │ │ │ ├── e-port-ratio.md │ │ │ ├── e-ratio.md │ │ │ ├── e-snippet.md │ │ │ ├── e-truncate.md │ │ │ ├── e-type.md │ │ │ └── e-youtube-thumbnail.md │ │ ├── comments │ │ │ ├── _index.md │ │ │ ├── c-click-to-load.md │ │ │ ├── c-depth.md │ │ │ ├── c-disqus.md │ │ │ ├── c-filter.md │ │ │ ├── c-form-first.md │ │ │ └── c-newer.md │ │ ├── default │ │ │ ├── _index.md │ │ │ ├── d-avatar.md │ │ │ ├── d-favicon.md │ │ │ ├── d-image.md │ │ │ ├── d-ogImage.md │ │ │ ├── d-profile-url.md │ │ │ └── d-sponsor.md │ │ ├── functions │ │ │ ├── _index.md │ │ │ ├── f-clean-xml.md │ │ │ ├── f-cloudflare.md │ │ │ ├── f-filter.md │ │ │ ├── f-image-params.md │ │ │ ├── f-more.md │ │ │ ├── f-not-defer.md │ │ │ ├── f-page-sidebar.md │ │ │ ├── f-pagination.md │ │ │ ├── f-post-sidebar.md │ │ │ ├── f-sidebar-in.md │ │ │ ├── f-sticky-sidebar.md │ │ │ └── f-swap.md │ │ ├── general │ │ │ ├── _index.md │ │ │ ├── g-formspree.md │ │ │ ├── g-modal-search.md │ │ │ ├── g-scheme.md │ │ │ └── g-toggle-scheme.md │ │ ├── post │ │ │ ├── _index.md │ │ │ ├── p-ads.md │ │ │ ├── p-auto-toc.md │ │ │ ├── p-highlight.md │ │ │ ├── p-inner-content.md │ │ │ ├── p-pagination.md │ │ │ ├── p-rel-cols.md │ │ │ ├── p-rel-shuffle.md │ │ │ ├── p-related.md │ │ │ ├── p-share-on.md │ │ │ ├── p-sponsor.md │ │ │ ├── p-symbol.md │ │ │ ├── p-template.md │ │ │ └── p-toc-heading.md │ │ └── text.md │ │ └── widgets │ │ ├── Adsense.md │ │ ├── BlogArchive.md │ │ ├── ContactForm.md │ │ ├── FeaturedPost.md │ │ ├── HTML │ │ ├── Alert.md │ │ ├── Copyright.md │ │ ├── InnerContent.md │ │ └── _index.md │ │ ├── Header.md │ │ ├── Image.md │ │ ├── Label │ │ ├── _index.md │ │ └── filters.md │ │ ├── LinkList │ │ ├── Social.md │ │ └── _index.md │ │ ├── PageList │ │ ├── _index.md │ │ ├── menu.md │ │ └── navbar.md │ │ ├── PopularPosts │ │ ├── _index.md │ │ ├── breaking-news.md │ │ ├── carousel.md │ │ ├── featured.md │ │ ├── hybrid.md │ │ ├── slider.md │ │ └── trending.md │ │ ├── Profile.md │ │ ├── Text │ │ ├── _index.md │ │ ├── comments.md │ │ └── section.md │ │ ├── TextList.md │ │ └── _index.md ├── i18n │ ├── en.toml │ └── es.toml ├── layouts │ ├── 404.html │ ├── _default │ │ ├── _markup │ │ │ ├── render-heading.html │ │ │ ├── render-image.html │ │ │ └── render-link.html │ │ ├── baseof.html │ │ ├── list.html │ │ ├── redirect.html │ │ └── single.html │ ├── index.html │ ├── partials │ │ ├── article.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── scripts.html │ │ ├── search.html │ │ ├── sidebar.html │ │ ├── styles.html │ │ ├── svg.html │ │ ├── title.html │ │ └── toc.html │ ├── robots.txt │ ├── shortcodes │ │ ├── button.html │ │ ├── code.html │ │ ├── columns.html │ │ ├── data.html │ │ ├── hint.html │ │ ├── nodata.html │ │ ├── og.html │ │ ├── pagelink.html │ │ ├── ratio.html │ │ ├── tab.html │ │ ├── table.html │ │ └── theme.html │ └── sitemap.xml └── static │ ├── favicon.png │ ├── images │ ├── copia-de-seguridad.png │ ├── core.png │ ├── editar-html.png │ ├── enqueue.png │ ├── entries │ │ ├── attachments-preview.png │ │ └── edit-attachments.png │ ├── habilitar-adjuntos.png │ ├── habilitar-feeds.png │ ├── habilitar-meta.png │ ├── portada.png │ ├── posters │ │ ├── demo-modificar-variable.png │ │ ├── g-formspree.png │ │ ├── image-params.png │ │ ├── image.png │ │ ├── link-params.png │ │ ├── link.png │ │ ├── localizar-variables.png │ │ └── personalizar.png │ ├── restaurar.png │ ├── upload-images.png │ ├── variables │ │ ├── admin │ │ │ ├── a-access-false.png │ │ │ ├── a-access-true.png │ │ │ ├── a-edit-true-post.png │ │ │ ├── a-edit-true.png │ │ │ ├── a-jumpLink-true.png │ │ │ ├── a-tools-false.png │ │ │ └── a-tools-true.png │ │ ├── cards │ │ │ ├── e-defined-tags-labels.png │ │ │ ├── e-defined-tags-true.png │ │ │ ├── e-meta.png │ │ │ └── e-snippet.png │ │ ├── default │ │ │ ├── d-avatar-post.png │ │ │ ├── d-avatar.png │ │ │ ├── d-image.png │ │ │ ├── d-profile-url-post.png │ │ │ ├── d-profile-url.png │ │ │ ├── d-sponsor.png │ │ │ ├── favicon16.png │ │ │ ├── favicon192.png │ │ │ └── favicon32.png │ │ ├── functions │ │ │ ├── f-clean-xml-false-widgets.png │ │ │ ├── f-clean-xml-false.png │ │ │ ├── f-clean-xml-true-widgets.png │ │ │ ├── f-clean-xml-true.png │ │ │ ├── f-filter-admin.png │ │ │ ├── f-page-sidebar.png │ │ │ └── f-post-sidebar.png │ │ ├── general │ │ │ ├── g-modal-search.png │ │ │ ├── g-revue.png │ │ │ ├── g-scheme-dark.png │ │ │ └── g-scheme-light.png │ │ ├── post │ │ │ ├── p-ads-end.png │ │ │ ├── p-ads-start.png │ │ │ ├── p-auto-toc-after-first-heading.png │ │ │ ├── p-auto-toc-after-first-paragraph.png │ │ │ ├── p-auto-toc-before-first-heading.png │ │ │ ├── p-auto-toc-before-first-paragraph.png │ │ │ ├── p-auto-toc-true.png │ │ │ ├── p-highlight-false.png │ │ │ ├── p-highlight-true.png │ │ │ ├── p-pagination.png │ │ │ ├── p-related-4.png │ │ │ ├── p-related.png │ │ │ ├── p-share-on.png │ │ │ ├── p-sponsor-post.png │ │ │ ├── p-sponsor.png │ │ │ ├── p-symbol-post.png │ │ │ └── p-symbol.png │ │ └── text │ │ │ ├── t-authorbadge.png │ │ │ └── t-recent.png │ └── widgets │ │ ├── admin-copyright.png │ │ ├── admin-inner.png │ │ ├── admin-menu.png │ │ ├── admin-social.png │ │ ├── adsense.png │ │ ├── alert.png │ │ ├── blog-archive-flat.png │ │ ├── blog-archive.png │ │ ├── breaking-news.png │ │ ├── carousel.png │ │ ├── comments-url.png │ │ ├── comments.png │ │ ├── contactform.png │ │ ├── copyright.png │ │ ├── featured-post.png │ │ ├── featured.png │ │ ├── filters-list.png │ │ ├── filters.png │ │ ├── header.png │ │ ├── hybrid.png │ │ ├── image.png │ │ ├── innercontent.png │ │ ├── label.png │ │ ├── link-list.png │ │ ├── menu.png │ │ ├── navbar-social.png │ │ ├── navbar.png │ │ ├── pagelist.png │ │ ├── popularposts.png │ │ ├── profile-team.png │ │ ├── profile.png │ │ ├── section-url.png │ │ ├── section.png │ │ ├── slider.png │ │ ├── social.png │ │ ├── subscribe.png │ │ └── trending.png │ ├── svg-sprite.svg │ └── videos │ ├── demo-modificar-variable.mp4 │ ├── desplegables.mp4 │ ├── g-formspree.mp4 │ ├── localizar-variables.mp4 │ ├── template-image-name.mp4 │ ├── template-image-params.mp4 │ ├── template-name-proxy.mp4 │ └── template-url-params.mp4 └── themes ├── assets ├── css │ ├── fonts │ │ ├── oswald.min.css │ │ └── roboto.min.css │ ├── main.min.css │ ├── non-critical.min.css │ ├── preview.css │ ├── root.css │ └── typography.min.css ├── js │ ├── alerts.min.js │ ├── bison.min.js │ ├── blogger.js │ ├── dark.min.js │ └── preview.js └── vendor │ └── whale.min.css └── bison ├── _config.pug ├── _variables.pug ├── bison.pug ├── bison.xml ├── blocks ├── end.pug ├── footer.pug ├── header.pug ├── hero.pug ├── main.pug ├── section │ ├── AfterContent.pug │ ├── BeforeContent.pug │ ├── Content.pug │ ├── Filters.pug │ ├── FooterLower.pug │ ├── FooterUpper.pug │ ├── Header.pug │ ├── SidebarGlobal.pug │ ├── SidebarPage.pug │ ├── SidebarPost.pug │ ├── Tools.pug │ └── Upper.pug └── start.pug ├── markups ├── Common │ ├── comment │ │ ├── avatar.pug │ │ ├── body.pug │ │ ├── buttons.pug │ │ ├── content.pug │ │ ├── form.pug │ │ ├── header.pug │ │ ├── item.pug │ │ ├── list.pug │ │ ├── main.pug │ │ └── pagination.pug │ ├── content │ │ ├── alerts.pug │ │ ├── carousel.pug │ │ ├── comments.pug │ │ ├── section.pug │ │ └── trending.pug │ ├── contentTitle.pug │ ├── head.pug │ ├── js │ │ ├── pagination.pug │ │ ├── related.pug │ │ └── templates.pug │ ├── layoutClass.pug │ ├── noContent.pug │ ├── post │ │ ├── admin.pug │ │ ├── attachments.pug │ │ ├── body.pug │ │ ├── card.pug │ │ ├── data.pug │ │ ├── featuredLabels.pug │ │ ├── header.pug │ │ ├── hero.pug │ │ ├── icon.pug │ │ ├── inlineAd.pug │ │ ├── labels.pug │ │ ├── meta.pug │ │ ├── pagination.pug │ │ ├── share.pug │ │ ├── title.pug │ │ └── view.pug │ ├── root.pug │ ├── super │ │ ├── class.pug │ │ ├── content.pug │ │ └── title.pug │ ├── utils │ │ ├── alert.pug │ │ ├── assets.pug │ │ ├── brand.pug │ │ ├── dark.pug │ │ ├── docs.pug │ │ ├── filter.pug │ │ ├── gallery.pug │ │ ├── intervals.pug │ │ ├── modal.pug │ │ └── skeleton.pug │ └── widget │ │ ├── AdSense.pug │ │ ├── Blog.pug │ │ ├── BlogArchive.pug │ │ ├── BlogContent.pug │ │ ├── BlogHero.pug │ │ ├── BlogSearch.pug │ │ ├── Breaking.pug │ │ ├── ContactForm.pug │ │ ├── Copyright.pug │ │ ├── Enqueue.pug │ │ ├── FeaturedPost.pug │ │ ├── FooterLinks.pug │ │ ├── HTML.pug │ │ ├── Header.pug │ │ ├── Image.pug │ │ ├── InnerContent.pug │ │ ├── Label.pug │ │ ├── LinkList.pug │ │ ├── Menu.pug │ │ ├── Navbar.pug │ │ ├── PageList.pug │ │ ├── PopularPosts.pug │ │ ├── Profile.pug │ │ ├── SocialNetworks.pug │ │ ├── Subscribe.pug │ │ ├── Text.pug │ │ └── TextList.pug └── init.pug └── variables ├── admin.pug ├── basic.pug ├── cards.pug ├── comment.pug ├── const.pug ├── default.pug ├── functions.pug ├── groups.pug ├── post.pug └── text.pug /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/README.md -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/config.toml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/gulpfile.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/package.json -------------------------------------------------------------------------------- /site/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/js/main.js -------------------------------------------------------------------------------- /site/assets/js/matchMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/js/matchMedia.js -------------------------------------------------------------------------------- /site/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/js/search.js -------------------------------------------------------------------------------- /site/assets/json/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/json/index.json -------------------------------------------------------------------------------- /site/assets/scss/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_common.scss -------------------------------------------------------------------------------- /site/assets/scss/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_custom.scss -------------------------------------------------------------------------------- /site/assets/scss/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_error.scss -------------------------------------------------------------------------------- /site/assets/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_functions.scss -------------------------------------------------------------------------------- /site/assets/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_layout.scss -------------------------------------------------------------------------------- /site/assets/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_mixins.scss -------------------------------------------------------------------------------- /site/assets/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_reset.scss -------------------------------------------------------------------------------- /site/assets/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_root.scss -------------------------------------------------------------------------------- /site/assets/scss/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_utils.scss -------------------------------------------------------------------------------- /site/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/_variables.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_article.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_code.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_columns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_columns.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_dropdown.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_markdown.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_menu.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_pagelink.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_pagelink.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_search.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_svg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_svg.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_toc.scss -------------------------------------------------------------------------------- /site/assets/scss/components/_ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/components/_ui.scss -------------------------------------------------------------------------------- /site/assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/assets/scss/main.scss -------------------------------------------------------------------------------- /site/content/5.0/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/_index.md -------------------------------------------------------------------------------- /site/content/5.0/customize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/customize.md -------------------------------------------------------------------------------- /site/content/5.0/entries/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/_index.md -------------------------------------------------------------------------------- /site/content/5.0/entries/attachments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/attachments.md -------------------------------------------------------------------------------- /site/content/5.0/entries/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/hooks.md -------------------------------------------------------------------------------- /site/content/5.0/entries/templates/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/templates/_index.md -------------------------------------------------------------------------------- /site/content/5.0/entries/templates/featured.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/templates/featured.md -------------------------------------------------------------------------------- /site/content/5.0/entries/templates/hero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/templates/hero.md -------------------------------------------------------------------------------- /site/content/5.0/entries/templates/product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/templates/product.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/_index.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/alerts.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/audio.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/blockquote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/blockquote.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/buttons.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/callout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/callout.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/code.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/columns.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/gallery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/gallery.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/headings.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/images.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/lists.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/paragraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/paragraph.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/separators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/separators.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/spoiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/spoiler.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/table-of-contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/table-of-contents.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/table.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/tabs.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/text-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/text-size.md -------------------------------------------------------------------------------- /site/content/5.0/entries/typography/video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/entries/typography/video.md -------------------------------------------------------------------------------- /site/content/5.0/pages/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/pages/404.md -------------------------------------------------------------------------------- /site/content/5.0/pages/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/pages/_index.md -------------------------------------------------------------------------------- /site/content/5.0/pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/pages/contact.md -------------------------------------------------------------------------------- /site/content/5.0/starting/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/starting/_index.md -------------------------------------------------------------------------------- /site/content/5.0/starting/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/starting/config.md -------------------------------------------------------------------------------- /site/content/5.0/starting/good-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/starting/good-practices.md -------------------------------------------------------------------------------- /site/content/5.0/starting/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/starting/install.md -------------------------------------------------------------------------------- /site/content/5.0/starting/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/starting/update.md -------------------------------------------------------------------------------- /site/content/5.0/thanks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/thanks.md -------------------------------------------------------------------------------- /site/content/5.0/variables/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/admin/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/admin/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/admin/a-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/admin/a-access.md -------------------------------------------------------------------------------- /site/content/5.0/variables/admin/a-edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/admin/a-edit.md -------------------------------------------------------------------------------- /site/content/5.0/variables/admin/a-jumpLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/admin/a-jumpLink.md -------------------------------------------------------------------------------- /site/content/5.0/variables/admin/a-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/admin/a-tools.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-cla-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-cla-ratio.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-cols-min-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-cols-min-list.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-cols-min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-cols-min.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-defined-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-defined-tags.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-ga-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-ga-ratio.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-line-clamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-line-clamp.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-meta.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-port-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-port-ratio.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-ratio.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-snippet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-snippet.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-truncate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-truncate.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-type.md -------------------------------------------------------------------------------- /site/content/5.0/variables/cards/e-youtube-thumbnail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/cards/e-youtube-thumbnail.md -------------------------------------------------------------------------------- /site/content/5.0/variables/comments/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/comments/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/comments/c-click-to-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/comments/c-click-to-load.md -------------------------------------------------------------------------------- /site/content/5.0/variables/comments/c-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/comments/c-depth.md -------------------------------------------------------------------------------- /site/content/5.0/variables/comments/c-disqus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/comments/c-disqus.md -------------------------------------------------------------------------------- /site/content/5.0/variables/comments/c-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/comments/c-filter.md -------------------------------------------------------------------------------- /site/content/5.0/variables/comments/c-form-first.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/comments/c-form-first.md -------------------------------------------------------------------------------- /site/content/5.0/variables/comments/c-newer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/comments/c-newer.md -------------------------------------------------------------------------------- /site/content/5.0/variables/default/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/default/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/default/d-avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/default/d-avatar.md -------------------------------------------------------------------------------- /site/content/5.0/variables/default/d-favicon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/default/d-favicon.md -------------------------------------------------------------------------------- /site/content/5.0/variables/default/d-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/default/d-image.md -------------------------------------------------------------------------------- /site/content/5.0/variables/default/d-ogImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/default/d-ogImage.md -------------------------------------------------------------------------------- /site/content/5.0/variables/default/d-profile-url.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/default/d-profile-url.md -------------------------------------------------------------------------------- /site/content/5.0/variables/default/d-sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/default/d-sponsor.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-clean-xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-clean-xml.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-cloudflare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-cloudflare.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-filter.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-image-params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-image-params.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-more.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-not-defer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-not-defer.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-page-sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-page-sidebar.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-pagination.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-post-sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-post-sidebar.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-sidebar-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-sidebar-in.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-sticky-sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-sticky-sidebar.md -------------------------------------------------------------------------------- /site/content/5.0/variables/functions/f-swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/functions/f-swap.md -------------------------------------------------------------------------------- /site/content/5.0/variables/general/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/general/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/general/g-formspree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/general/g-formspree.md -------------------------------------------------------------------------------- /site/content/5.0/variables/general/g-modal-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/general/g-modal-search.md -------------------------------------------------------------------------------- /site/content/5.0/variables/general/g-scheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/general/g-scheme.md -------------------------------------------------------------------------------- /site/content/5.0/variables/general/g-toggle-scheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/general/g-toggle-scheme.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/_index.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-ads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-ads.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-auto-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-auto-toc.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-highlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-highlight.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-inner-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-inner-content.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-pagination.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-rel-cols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-rel-cols.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-rel-shuffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-rel-shuffle.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-related.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-share-on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-share-on.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-sponsor.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-symbol.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-template.md -------------------------------------------------------------------------------- /site/content/5.0/variables/post/p-toc-heading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/post/p-toc-heading.md -------------------------------------------------------------------------------- /site/content/5.0/variables/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/variables/text.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Adsense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Adsense.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/BlogArchive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/BlogArchive.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/ContactForm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/ContactForm.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/FeaturedPost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/FeaturedPost.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/HTML/Alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/HTML/Alert.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/HTML/Copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/HTML/Copyright.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/HTML/InnerContent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/HTML/InnerContent.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/HTML/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/HTML/_index.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Header.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Image.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Label/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Label/_index.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Label/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Label/filters.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/LinkList/Social.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/LinkList/Social.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/LinkList/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/LinkList/_index.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PageList/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PageList/_index.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PageList/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PageList/menu.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PageList/navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PageList/navbar.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PopularPosts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PopularPosts/_index.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PopularPosts/breaking-news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PopularPosts/breaking-news.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PopularPosts/carousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PopularPosts/carousel.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PopularPosts/featured.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PopularPosts/featured.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PopularPosts/hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PopularPosts/hybrid.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PopularPosts/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PopularPosts/slider.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/PopularPosts/trending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/PopularPosts/trending.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Profile.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Text/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Text/_index.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Text/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Text/comments.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/Text/section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/Text/section.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/TextList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/TextList.md -------------------------------------------------------------------------------- /site/content/5.0/widgets/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/content/5.0/widgets/_index.md -------------------------------------------------------------------------------- /site/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/i18n/en.toml -------------------------------------------------------------------------------- /site/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/i18n/es.toml -------------------------------------------------------------------------------- /site/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/404.html -------------------------------------------------------------------------------- /site/layouts/_default/_markup/render-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/_default/_markup/render-heading.html -------------------------------------------------------------------------------- /site/layouts/_default/_markup/render-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/_default/_markup/render-image.html -------------------------------------------------------------------------------- /site/layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/_default/_markup/render-link.html -------------------------------------------------------------------------------- /site/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/_default/baseof.html -------------------------------------------------------------------------------- /site/layouts/_default/list.html: -------------------------------------------------------------------------------- 1 | {{ define "nothing" }}{{ end }} -------------------------------------------------------------------------------- /site/layouts/_default/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/_default/redirect.html -------------------------------------------------------------------------------- /site/layouts/_default/single.html: -------------------------------------------------------------------------------- 1 | {{ define "nothing" }}{{ end }} -------------------------------------------------------------------------------- /site/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/index.html -------------------------------------------------------------------------------- /site/layouts/partials/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/article.html -------------------------------------------------------------------------------- /site/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/footer.html -------------------------------------------------------------------------------- /site/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/head.html -------------------------------------------------------------------------------- /site/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/header.html -------------------------------------------------------------------------------- /site/layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/scripts.html -------------------------------------------------------------------------------- /site/layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/search.html -------------------------------------------------------------------------------- /site/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /site/layouts/partials/styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/styles.html -------------------------------------------------------------------------------- /site/layouts/partials/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/svg.html -------------------------------------------------------------------------------- /site/layouts/partials/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/title.html -------------------------------------------------------------------------------- /site/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/partials/toc.html -------------------------------------------------------------------------------- /site/layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/robots.txt -------------------------------------------------------------------------------- /site/layouts/shortcodes/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/button.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/code.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/columns.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/data.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/hint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/hint.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/nodata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/nodata.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/og.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/og.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/pagelink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/pagelink.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/ratio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/ratio.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/shortcodes/table.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/theme.html: -------------------------------------------------------------------------------- 1 | {{- .Site.Params.main_template -}} -------------------------------------------------------------------------------- /site/layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/layouts/sitemap.xml -------------------------------------------------------------------------------- /site/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/favicon.png -------------------------------------------------------------------------------- /site/static/images/copia-de-seguridad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/copia-de-seguridad.png -------------------------------------------------------------------------------- /site/static/images/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/core.png -------------------------------------------------------------------------------- /site/static/images/editar-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/editar-html.png -------------------------------------------------------------------------------- /site/static/images/enqueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/enqueue.png -------------------------------------------------------------------------------- /site/static/images/entries/attachments-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/entries/attachments-preview.png -------------------------------------------------------------------------------- /site/static/images/entries/edit-attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/entries/edit-attachments.png -------------------------------------------------------------------------------- /site/static/images/habilitar-adjuntos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/habilitar-adjuntos.png -------------------------------------------------------------------------------- /site/static/images/habilitar-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/habilitar-feeds.png -------------------------------------------------------------------------------- /site/static/images/habilitar-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/habilitar-meta.png -------------------------------------------------------------------------------- /site/static/images/portada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/portada.png -------------------------------------------------------------------------------- /site/static/images/posters/demo-modificar-variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/demo-modificar-variable.png -------------------------------------------------------------------------------- /site/static/images/posters/g-formspree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/g-formspree.png -------------------------------------------------------------------------------- /site/static/images/posters/image-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/image-params.png -------------------------------------------------------------------------------- /site/static/images/posters/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/image.png -------------------------------------------------------------------------------- /site/static/images/posters/link-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/link-params.png -------------------------------------------------------------------------------- /site/static/images/posters/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/link.png -------------------------------------------------------------------------------- /site/static/images/posters/localizar-variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/localizar-variables.png -------------------------------------------------------------------------------- /site/static/images/posters/personalizar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/posters/personalizar.png -------------------------------------------------------------------------------- /site/static/images/restaurar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/restaurar.png -------------------------------------------------------------------------------- /site/static/images/upload-images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/upload-images.png -------------------------------------------------------------------------------- /site/static/images/variables/admin/a-access-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/admin/a-access-false.png -------------------------------------------------------------------------------- /site/static/images/variables/admin/a-access-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/admin/a-access-true.png -------------------------------------------------------------------------------- /site/static/images/variables/admin/a-edit-true-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/admin/a-edit-true-post.png -------------------------------------------------------------------------------- /site/static/images/variables/admin/a-edit-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/admin/a-edit-true.png -------------------------------------------------------------------------------- /site/static/images/variables/admin/a-jumpLink-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/admin/a-jumpLink-true.png -------------------------------------------------------------------------------- /site/static/images/variables/admin/a-tools-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/admin/a-tools-false.png -------------------------------------------------------------------------------- /site/static/images/variables/admin/a-tools-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/admin/a-tools-true.png -------------------------------------------------------------------------------- /site/static/images/variables/cards/e-defined-tags-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/cards/e-defined-tags-labels.png -------------------------------------------------------------------------------- /site/static/images/variables/cards/e-defined-tags-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/cards/e-defined-tags-true.png -------------------------------------------------------------------------------- /site/static/images/variables/cards/e-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/cards/e-meta.png -------------------------------------------------------------------------------- /site/static/images/variables/cards/e-snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/cards/e-snippet.png -------------------------------------------------------------------------------- /site/static/images/variables/default/d-avatar-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/d-avatar-post.png -------------------------------------------------------------------------------- /site/static/images/variables/default/d-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/d-avatar.png -------------------------------------------------------------------------------- /site/static/images/variables/default/d-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/d-image.png -------------------------------------------------------------------------------- /site/static/images/variables/default/d-profile-url-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/d-profile-url-post.png -------------------------------------------------------------------------------- /site/static/images/variables/default/d-profile-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/d-profile-url.png -------------------------------------------------------------------------------- /site/static/images/variables/default/d-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/d-sponsor.png -------------------------------------------------------------------------------- /site/static/images/variables/default/favicon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/favicon16.png -------------------------------------------------------------------------------- /site/static/images/variables/default/favicon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/favicon192.png -------------------------------------------------------------------------------- /site/static/images/variables/default/favicon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/default/favicon32.png -------------------------------------------------------------------------------- /site/static/images/variables/functions/f-clean-xml-false-widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/functions/f-clean-xml-false-widgets.png -------------------------------------------------------------------------------- /site/static/images/variables/functions/f-clean-xml-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/functions/f-clean-xml-false.png -------------------------------------------------------------------------------- /site/static/images/variables/functions/f-clean-xml-true-widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/functions/f-clean-xml-true-widgets.png -------------------------------------------------------------------------------- /site/static/images/variables/functions/f-clean-xml-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/functions/f-clean-xml-true.png -------------------------------------------------------------------------------- /site/static/images/variables/functions/f-filter-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/functions/f-filter-admin.png -------------------------------------------------------------------------------- /site/static/images/variables/functions/f-page-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/functions/f-page-sidebar.png -------------------------------------------------------------------------------- /site/static/images/variables/functions/f-post-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/functions/f-post-sidebar.png -------------------------------------------------------------------------------- /site/static/images/variables/general/g-modal-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/general/g-modal-search.png -------------------------------------------------------------------------------- /site/static/images/variables/general/g-revue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/general/g-revue.png -------------------------------------------------------------------------------- /site/static/images/variables/general/g-scheme-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/general/g-scheme-dark.png -------------------------------------------------------------------------------- /site/static/images/variables/general/g-scheme-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/general/g-scheme-light.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-ads-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-ads-end.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-ads-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-ads-start.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-auto-toc-after-first-heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-auto-toc-after-first-heading.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-auto-toc-after-first-paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-auto-toc-after-first-paragraph.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-auto-toc-before-first-heading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-auto-toc-before-first-heading.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-auto-toc-before-first-paragraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-auto-toc-before-first-paragraph.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-auto-toc-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-auto-toc-true.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-highlight-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-highlight-false.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-highlight-true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-highlight-true.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-pagination.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-related-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-related-4.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-related.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-related.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-share-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-share-on.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-sponsor-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-sponsor-post.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-sponsor.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-symbol-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-symbol-post.png -------------------------------------------------------------------------------- /site/static/images/variables/post/p-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/post/p-symbol.png -------------------------------------------------------------------------------- /site/static/images/variables/text/t-authorbadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/text/t-authorbadge.png -------------------------------------------------------------------------------- /site/static/images/variables/text/t-recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/variables/text/t-recent.png -------------------------------------------------------------------------------- /site/static/images/widgets/admin-copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/admin-copyright.png -------------------------------------------------------------------------------- /site/static/images/widgets/admin-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/admin-inner.png -------------------------------------------------------------------------------- /site/static/images/widgets/admin-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/admin-menu.png -------------------------------------------------------------------------------- /site/static/images/widgets/admin-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/admin-social.png -------------------------------------------------------------------------------- /site/static/images/widgets/adsense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/adsense.png -------------------------------------------------------------------------------- /site/static/images/widgets/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/alert.png -------------------------------------------------------------------------------- /site/static/images/widgets/blog-archive-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/blog-archive-flat.png -------------------------------------------------------------------------------- /site/static/images/widgets/blog-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/blog-archive.png -------------------------------------------------------------------------------- /site/static/images/widgets/breaking-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/breaking-news.png -------------------------------------------------------------------------------- /site/static/images/widgets/carousel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/carousel.png -------------------------------------------------------------------------------- /site/static/images/widgets/comments-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/comments-url.png -------------------------------------------------------------------------------- /site/static/images/widgets/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/comments.png -------------------------------------------------------------------------------- /site/static/images/widgets/contactform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/contactform.png -------------------------------------------------------------------------------- /site/static/images/widgets/copyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/copyright.png -------------------------------------------------------------------------------- /site/static/images/widgets/featured-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/featured-post.png -------------------------------------------------------------------------------- /site/static/images/widgets/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/featured.png -------------------------------------------------------------------------------- /site/static/images/widgets/filters-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/filters-list.png -------------------------------------------------------------------------------- /site/static/images/widgets/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/filters.png -------------------------------------------------------------------------------- /site/static/images/widgets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/header.png -------------------------------------------------------------------------------- /site/static/images/widgets/hybrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/hybrid.png -------------------------------------------------------------------------------- /site/static/images/widgets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/image.png -------------------------------------------------------------------------------- /site/static/images/widgets/innercontent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/innercontent.png -------------------------------------------------------------------------------- /site/static/images/widgets/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/label.png -------------------------------------------------------------------------------- /site/static/images/widgets/link-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/link-list.png -------------------------------------------------------------------------------- /site/static/images/widgets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/menu.png -------------------------------------------------------------------------------- /site/static/images/widgets/navbar-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/navbar-social.png -------------------------------------------------------------------------------- /site/static/images/widgets/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/navbar.png -------------------------------------------------------------------------------- /site/static/images/widgets/pagelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/pagelist.png -------------------------------------------------------------------------------- /site/static/images/widgets/popularposts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/popularposts.png -------------------------------------------------------------------------------- /site/static/images/widgets/profile-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/profile-team.png -------------------------------------------------------------------------------- /site/static/images/widgets/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/profile.png -------------------------------------------------------------------------------- /site/static/images/widgets/section-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/section-url.png -------------------------------------------------------------------------------- /site/static/images/widgets/section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/section.png -------------------------------------------------------------------------------- /site/static/images/widgets/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/slider.png -------------------------------------------------------------------------------- /site/static/images/widgets/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/social.png -------------------------------------------------------------------------------- /site/static/images/widgets/subscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/subscribe.png -------------------------------------------------------------------------------- /site/static/images/widgets/trending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/images/widgets/trending.png -------------------------------------------------------------------------------- /site/static/svg-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/svg-sprite.svg -------------------------------------------------------------------------------- /site/static/videos/demo-modificar-variable.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/demo-modificar-variable.mp4 -------------------------------------------------------------------------------- /site/static/videos/desplegables.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/desplegables.mp4 -------------------------------------------------------------------------------- /site/static/videos/g-formspree.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/g-formspree.mp4 -------------------------------------------------------------------------------- /site/static/videos/localizar-variables.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/localizar-variables.mp4 -------------------------------------------------------------------------------- /site/static/videos/template-image-name.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/template-image-name.mp4 -------------------------------------------------------------------------------- /site/static/videos/template-image-params.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/template-image-params.mp4 -------------------------------------------------------------------------------- /site/static/videos/template-name-proxy.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/template-name-proxy.mp4 -------------------------------------------------------------------------------- /site/static/videos/template-url-params.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/site/static/videos/template-url-params.mp4 -------------------------------------------------------------------------------- /themes/assets/css/fonts/oswald.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/css/fonts/oswald.min.css -------------------------------------------------------------------------------- /themes/assets/css/fonts/roboto.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/css/fonts/roboto.min.css -------------------------------------------------------------------------------- /themes/assets/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/css/main.min.css -------------------------------------------------------------------------------- /themes/assets/css/non-critical.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/css/non-critical.min.css -------------------------------------------------------------------------------- /themes/assets/css/preview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/css/preview.css -------------------------------------------------------------------------------- /themes/assets/css/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/css/root.css -------------------------------------------------------------------------------- /themes/assets/css/typography.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/css/typography.min.css -------------------------------------------------------------------------------- /themes/assets/js/alerts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/js/alerts.min.js -------------------------------------------------------------------------------- /themes/assets/js/bison.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/js/bison.min.js -------------------------------------------------------------------------------- /themes/assets/js/blogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/js/blogger.js -------------------------------------------------------------------------------- /themes/assets/js/dark.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/js/dark.min.js -------------------------------------------------------------------------------- /themes/assets/js/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/js/preview.js -------------------------------------------------------------------------------- /themes/assets/vendor/whale.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/assets/vendor/whale.min.css -------------------------------------------------------------------------------- /themes/bison/_config.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/_config.pug -------------------------------------------------------------------------------- /themes/bison/_variables.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/_variables.pug -------------------------------------------------------------------------------- /themes/bison/bison.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/bison.pug -------------------------------------------------------------------------------- /themes/bison/bison.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/bison.xml -------------------------------------------------------------------------------- /themes/bison/blocks/end.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/end.pug -------------------------------------------------------------------------------- /themes/bison/blocks/footer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/footer.pug -------------------------------------------------------------------------------- /themes/bison/blocks/header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/header.pug -------------------------------------------------------------------------------- /themes/bison/blocks/hero.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/hero.pug -------------------------------------------------------------------------------- /themes/bison/blocks/main.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/main.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/AfterContent.pug: -------------------------------------------------------------------------------- 1 | //- Sección debajo de "Content" (Página principal) 2 | //- @author zkreations 3 | -------------------------------------------------------------------------------- /themes/bison/blocks/section/BeforeContent.pug: -------------------------------------------------------------------------------- 1 | //- Sección encima de "Content" (Página principal) 2 | //- @author zkreations 3 | -------------------------------------------------------------------------------- /themes/bison/blocks/section/Content.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/Content.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/Filters.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/Filters.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/FooterLower.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/FooterLower.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/FooterUpper.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/FooterUpper.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/Header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/Header.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/SidebarGlobal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/SidebarGlobal.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/SidebarPage.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/SidebarPage.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/SidebarPost.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/SidebarPost.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/Tools.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/Tools.pug -------------------------------------------------------------------------------- /themes/bison/blocks/section/Upper.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/section/Upper.pug -------------------------------------------------------------------------------- /themes/bison/blocks/start.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/blocks/start.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/avatar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/avatar.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/body.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/body.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/buttons.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/buttons.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/content.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/content.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/form.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/form.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/header.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/item.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/item.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/list.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/list.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/main.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/main.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/comment/pagination.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/comment/pagination.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/content/alerts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/content/alerts.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/content/carousel.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/content/carousel.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/content/comments.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/content/comments.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/content/section.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/content/section.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/content/trending.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/content/trending.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/contentTitle.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/contentTitle.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/head.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/js/pagination.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/js/pagination.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/js/related.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/js/related.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/js/templates.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/js/templates.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/layoutClass.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/layoutClass.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/noContent.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/noContent.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/admin.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/admin.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/attachments.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/attachments.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/body.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/body.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/card.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/card.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/data.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/data.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/featuredLabels.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/featuredLabels.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/header.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/hero.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/hero.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/icon.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/icon.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/inlineAd.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/inlineAd.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/labels.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/labels.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/meta.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/meta.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/pagination.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/pagination.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/share.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/share.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/title.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/title.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/post/view.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/post/view.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/root.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/root.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/super/class.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/super/class.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/super/content.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/super/content.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/super/title.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/super/title.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/alert.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/alert.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/assets.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/assets.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/brand.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/brand.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/dark.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/dark.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/docs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/docs.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/filter.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/filter.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/gallery.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/gallery.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/intervals.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/intervals.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/modal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/modal.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/utils/skeleton.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/utils/skeleton.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/AdSense.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/AdSense.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Blog.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Blog.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/BlogArchive.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/BlogArchive.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/BlogContent.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/BlogContent.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/BlogHero.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/BlogHero.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/BlogSearch.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/BlogSearch.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Breaking.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Breaking.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/ContactForm.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/ContactForm.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Copyright.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Copyright.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Enqueue.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Enqueue.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/FeaturedPost.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/FeaturedPost.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/FooterLinks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/FooterLinks.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/HTML.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/HTML.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Header.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Image.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Image.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/InnerContent.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/InnerContent.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Label.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Label.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/LinkList.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/LinkList.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Menu.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Menu.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Navbar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Navbar.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/PageList.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/PageList.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/PopularPosts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/PopularPosts.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Profile.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Profile.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/SocialNetworks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/SocialNetworks.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Subscribe.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Subscribe.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/Text.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/Text.pug -------------------------------------------------------------------------------- /themes/bison/markups/Common/widget/TextList.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/Common/widget/TextList.pug -------------------------------------------------------------------------------- /themes/bison/markups/init.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/markups/init.pug -------------------------------------------------------------------------------- /themes/bison/variables/admin.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/admin.pug -------------------------------------------------------------------------------- /themes/bison/variables/basic.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/basic.pug -------------------------------------------------------------------------------- /themes/bison/variables/cards.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/cards.pug -------------------------------------------------------------------------------- /themes/bison/variables/comment.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/comment.pug -------------------------------------------------------------------------------- /themes/bison/variables/const.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/const.pug -------------------------------------------------------------------------------- /themes/bison/variables/default.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/default.pug -------------------------------------------------------------------------------- /themes/bison/variables/functions.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/functions.pug -------------------------------------------------------------------------------- /themes/bison/variables/groups.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/groups.pug -------------------------------------------------------------------------------- /themes/bison/variables/post.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/post.pug -------------------------------------------------------------------------------- /themes/bison/variables/text.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkreations/bison/HEAD/themes/bison/variables/text.pug --------------------------------------------------------------------------------