Skip to content
Snippets Groups Projects
Commit 49bf9a0d authored by nesdis's avatar nesdis
Browse files

Improved documentation

parent 3acba0ff
Branches
No related tags found
No related merge requests found
......@@ -13,7 +13,6 @@ docs/.sass-cache/*
docs/_apidocs/_build/
docs/_apidocs/doctrees/
docs/_layouts/*
docs/_sass/*
docs/_site/*
docs/assets/js/*
!docs/assets/js/jquery.liquid-slider.min.js
......
......@@ -130,6 +130,7 @@ plugins:
- jekyll-gist
- jemoji
- jekyll-include-cache
- jekyll-redirect-from
# mimic GitHub Pages with --safe
whitelist:
......
<div class="toc feedback">
<header><h4 class="nav__title"><i class="fas fa-{{ page.toc_icon | default: 'file-alt' }}"></i> Rate the Docs</h4></header>
<form action="https://formspree.io/nesdis@gmail.com" method="POST">
<select name="rating">
<option value="1">1 (Sucks)</option>
<option value="2">2</option>
<option value="3" selected>3</option>
<option value="4">4</option>
<option value="4">5 (Awesome)</option>
</select>
<textarea name="feedback" rows="5" cols="30">Feedback</textarea>
<input type="submit" value="Send">
</form>
</div>
\ No newline at end of file
<!-- start custom head snippets -->
<!-- Google Tag Manager
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T72KG6N');</script>
End Google Tag Manager -->
<!--
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:817955,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
-->
<link rel="stylesheet" type="text/css" media="screen" href="/djongo/assets/css/sponsor-tire.css">
<!--<script src="/djongo/assets/js/jquery.min.js"></script>-->
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>-->
<!-- <script src="/djongo/assets/js/main.min.js"></script> -->
<!--<script>-->
<!--$(function(){-->
<!--/* Here is the slider using default settings */-->
<!--$('#slider-1').liquidSlider({-->
<!--autoSlide:true,-->
<!--autoHeight:false,-->
<!--autoSlideInterval: 4000,-->
<!--forceAutoSlide: true,-->
<!--dynamicTabs: false-->
<!--});-->
<!--});-->
<!--</script>-->
<!-- insert favicons. use http://realfavicongenerator.net/ -->
<link rel="stylesheet" type="text/css" media="screen" href="{{'/assets/css/custom.css' | relative_url}}">
<!-- end custom head snippets -->
\ No newline at end of file
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T72KG6N');</script>
End Google Tag Manager -->
\ No newline at end of file
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:817955,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
\ No newline at end of file
{% if page.pizza %}
<aside class="sidebar__right" style="position: sticky; top: 2em; float: right">
<header><h4 class="nav__title"><i class="fas fa-{{ page.toc_icon | default: 'file-alt' }}"></i> Buy ME A Pizza</h4></header>
<a href="https://www.patreon.com/posts/buy-me-pizza-26095081"><img src="/djongo/assets/images/pizza.jpg"></a>
</aside>
{% endif %}
\ No newline at end of file
@import "sponsor-tire/tire";
\ No newline at end of file
......@@ -5,26 +5,37 @@
justify-content: center;
}
.tire_item__box {
.tire__banner {
height: 100px;
}
%box-border {
border-style: solid;
border-width: 1px;
border-color: rgb(229, 227, 221);
border-radius: 4px;
}
%box-spacing {
margin-bottom: 2em;
margin-left: 1em;
margin-right: 1em;
padding: 1em;
}
.tire_item__box {
@extend %box-border;
@extend %box-spacing;
width: 29%;
min-width: 16em;
text-align: center;
}
.tire_item__box ul {
ul {
text-align: left;
}
}
.tire_item__title {
font-weight: bold;
......@@ -52,7 +63,3 @@
margin-right: 0;
}
}
.tire__banner {
height: 100px;
}
\ No newline at end of file
---
# this ensures Jekyll reads the file to be transformed into CSS later
---
@import "sponsor-tire";
\ No newline at end of file
---
title: Integrating Django with MongoDB
permalink: /get-started/
redirect_from: /integrating-django-with-mongodb/
description: "Djongo is a python connector for using the Django ORM with MongoDB. Use MongoDB as a backend database for your Django project, without changing the Django ORM. Start using Django with MongoDB by adding just one line of code"
---
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment