forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.92 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends "base.html" %}
{% block meta_header %}
<meta name="description" content="Full Stack Python explains programming concepts in plain language and provides links to the best tutorials for those topics.">
<link rel="canonical" href="https://www.fullstackpython.com/" />
{% endblock %}
{% block css %}<style>{% include "css/base.css" %}{% include "css/panel.css" %}{% include "css/page-article.css" %}{% include "css/responsive.css" %}</style>{% endblock %}
{% block banner %}
{% endblock %}
{% block content %}
<div class="row">
<div class="c8">
<h1 style="font-size:26px">Build, Deploy and Operate Python Applications</h1>
<p>You're knee deep in learning <a href="http://www.python.org/">Python</a>
programming. The syntax is starting to make sense. The first
few <em>ahh-ha!</em> moments hit you as you learn to use
conditional statements, <code>for</code> loops and classes while
coding with the open source libraries that make Python such an
amazing programming ecosystem.</p>
<p>Now you want to take your
<a href="/learning-programming.html">initial Python knowledge</a>
and make something real, like a web application to show off to friends or
sell as a service to customers. That's where
<a href="https://www.fullstackpython.com/table-of-contents.html">Full Stack Python</a>
comes in. You have come to the right place to learn everything you
need to <a href="/web-development.html">create</a>,
<a href="/deployment.html">deploy</a> and <a href="/devops.html">operate</a>
Python-powered applications.</p>
<p>This guide branches out on topic because your learning
requirements depend on what you're working on. Select one
of the buttons below or check out the full
<a href="/table-of-contents.html">table of contents</a>.
</p>
<h3>What do you need to learn to create your application?</h3>
{% include "choices/index.html" %}
</div>
{% include "index-sidebar.html" %}
</div>
{% endblock %}