Skip to content

Commit cd39e66

Browse files
committed
adding meta descriptions to the rest of the pages
1 parent 172b295 commit cd39e66

15 files changed

+15
-1
lines changed

caching.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta http-equiv="X-UA-Compatible" content="IE=edge">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta name="author" content="Matt Makai">
7+
<meta name="description" content="Caching reduces load on servers by pre-calculating the results of common operations. Learn more about caching on Full Stack Python.">
78
<link rel="shortcut icon" href="theme/img/fsp-fav.png">
89
<title>Caching - Full Stack Python</title>
910
<!--[if lt IE 9]>

configuration-management.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta http-equiv="X-UA-Compatible" content="IE=edge">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta name="author" content="Matt Makai">
7+
<meta name="description" content="Configuration management tools allow developers to automate deployment and environment setting. Learn more about configuration management on Full Stack Python.">
78
<link rel="shortcut icon" href="theme/img/fsp-fav.png">
89
<title>Configuration Management - Full Stack Python</title>
910
<!--[if lt IE 9]>

continuous-integration.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta http-equiv="X-UA-Compatible" content="IE=edge">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta name="author" content="Matt Makai">
7+
<meta name="description" content="Continuous integration automatically rebuilds and deploys applications as developers commit code. Learn more on Full Stack Python.">
78
<link rel="shortcut icon" href="theme/img/fsp-fav.png">
89
<title>Continuous Integration - Full Stack Python</title>
910
<!--[if lt IE 9]>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-15T11:34:29Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-15T12:35:55Z</updated></feed>

logging.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta http-equiv="X-UA-Compatible" content="IE=edge">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta name="author" content="Matt Makai">
7+
<meta name="description" content="Logging saves error, warning and event output to persistent storage for debugging purposes. Learn more about logging on Full Stack Python.">
78
<link rel="shortcut icon" href="theme/img/fsp-fav.png">
89
<title>Logging - Full Stack Python</title>
910
<!--[if lt IE 9]>

monitoring.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<meta http-equiv="X-UA-Compatible" content="IE=edge">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta name="author" content="Matt Makai">
7+
<meta name="description" content="Monitoring tools capture and visualize data from an application's execution. Learn more about monitoring on Full Stack Python.">
78
<link rel="shortcut icon" href="theme/img/fsp-fav.png">
89
<title>Monitoring - Full Stack Python</title>
910
<!--[if lt IE 9]>

source/content/pages/07-web-app-deployment/11-task-queues.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ title: Task Queues
22
category: page
33
slug: task-queues
44
sort-order: 0711
5+
meta: Task queues handle asynchronous jobs outside the HTTP request-response cycle. Learn more about task queues on Full Stack Python.
56
choice1url: /logging.html
67
choice1icon: fa-align-left fa-inverse
78
choice1text: How do I monitor my app and its task queues with logging?

source/content/pages/07-web-app-deployment/12-configuration-management.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ title: Configuration Management
22
category: page
33
slug: configuration-management
44
sort-order: 0712
5+
meta: Configuration management tools allow developers to automate deployment and environment setting. Learn more about configuration management on Full Stack Python.
56
choice1url: /continuous-integration.html
67
choice1icon: fa-refresh
78
choice1text: How do I regularly integrate my project's codebase?

source/content/pages/07-web-app-deployment/13-continuous-integration.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ title: Continuous Integration
22
category: page
33
slug: continuous-integration
44
sort-order: 0713
5+
meta: Continuous integration automatically rebuilds and deploys applications as developers commit code. Learn more on Full Stack Python.
56
choice1url: /logging.html
67
choice1icon: fa-align-left fa-inverse
78
choice1text: How do I log events that happen in my app while it is running?

source/content/pages/07-web-app-deployment/14-logging.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ title: Logging
22
category: page
33
slug: logging
44
sort-order: 0714
5+
meta: Logging saves error, warning and event output to persistent storage for debugging purposes. Learn more about logging on Full Stack Python.
56
choice1url: /monitoring.html
67
choice1icon: fa-bar-chart-o fa-inverse
78
choice1text: How can I monitor my live app with tools other than just logs?

0 commit comments

Comments
 (0)