Skip to content

Commit 99621f1

Browse files
committed
fixing extraneous end anchor elements
1 parent 9de24f0 commit 99621f1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

all.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3331,7 +3331,7 @@ <h2>Why are static site generators useful?</h2>
33313331
to serve the site and didn't have any issues even with close to 400
33323332
concurrent connections at a time, as shown in the following Google Analytics
33333333
screenshot captured during that traffic burst.</p>
3334-
<p><img src="/img/hacker-news-traffic.jpg" width="100%" alt="Example of how static websites scale with a CDN based on Full Stack Python on Hacker News front page traffic." class="technical-diagram"></a></p>
3334+
<p><img src="/img/hacker-news-traffic.jpg" width="100%" alt="Example of how static websites scale with a CDN based on Full Stack Python on Hacker News front page traffic." class="technical-diagram"></p>
33353335
<h2>How do static website generators work?</h2>
33363336
<p>Static site generators allow a user to create HTML files by writing in a
33373337
markup language and coding template files. The static site generator then
@@ -3341,7 +3341,7 @@ <h2>How do static website generators work?</h2>
33413341
<p>For example, as shown in the diagram below, the Pelican static site
33423342
generator can take in reStructuredText files and Jinja2 template files
33433343
as input then combine them to output a set of static HTML files.</p>
3344-
<p><img src="/img/pelican-flow.jpg" width="100%" alt="Example of how static site generators work with a markup language and templates." class="technical-diagram"></a></p>
3344+
<p><img src="/img/pelican-flow.jpg" width="100%" alt="Example of how static site generators work with a markup language and templates." class="technical-diagram"></p>
33453345
<h2>What's the downside to using static site generators?</h2>
33463346
<p>The major downside is that code cannot be executed after a site is created.
33473347
You are stuck with the output files so if you're used to building web

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>2016-03-20T12:08:31Z</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>2016-03-20T12:39:16Z</updated></feed>

source/content/pages/04-web-development/16-static-site-generator.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ to serve the site and didn't have any issues even with close to 400
3131
concurrent connections at a time, as shown in the following Google Analytics
3232
screenshot captured during that traffic burst.
3333

34-
<img src="/img/hacker-news-traffic.jpg" width="100%" alt="Example of how static websites scale with a CDN based on Full Stack Python on Hacker News front page traffic." class="technical-diagram"></a>
34+
<img src="/img/hacker-news-traffic.jpg" width="100%" alt="Example of how static websites scale with a CDN based on Full Stack Python on Hacker News front page traffic." class="technical-diagram">
3535

3636

3737
## How do static website generators work?
@@ -45,7 +45,7 @@ For example, as shown in the diagram below, the Pelican static site
4545
generator can take in reStructuredText files and Jinja2 template files
4646
as input then combine them to output a set of static HTML files.
4747

48-
<img src="/img/pelican-flow.jpg" width="100%" alt="Example of how static site generators work with a markup language and templates." class="technical-diagram"></a>
48+
<img src="/img/pelican-flow.jpg" width="100%" alt="Example of how static site generators work with a markup language and templates." class="technical-diagram">
4949

5050

5151
## What's the downside to using static site generators?

static-site-generator.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h2>Why are static site generators useful?</h2>
5151
to serve the site and didn't have any issues even with close to 400
5252
concurrent connections at a time, as shown in the following Google Analytics
5353
screenshot captured during that traffic burst.</p>
54-
<p><img src="/img/hacker-news-traffic.jpg" width="100%" alt="Example of how static websites scale with a CDN based on Full Stack Python on Hacker News front page traffic." class="technical-diagram"></a></p>
54+
<p><img src="/img/hacker-news-traffic.jpg" width="100%" alt="Example of how static websites scale with a CDN based on Full Stack Python on Hacker News front page traffic." class="technical-diagram"></p>
5555
<h2>How do static website generators work?</h2>
5656
<p>Static site generators allow a user to create HTML files by writing in a
5757
markup language and coding template files. The static site generator then
@@ -61,7 +61,7 @@ <h2>How do static website generators work?</h2>
6161
<p>For example, as shown in the diagram below, the Pelican static site
6262
generator can take in reStructuredText files and Jinja2 template files
6363
as input then combine them to output a set of static HTML files.</p>
64-
<p><img src="/img/pelican-flow.jpg" width="100%" alt="Example of how static site generators work with a markup language and templates." class="technical-diagram"></a></p>
64+
<p><img src="/img/pelican-flow.jpg" width="100%" alt="Example of how static site generators work with a markup language and templates." class="technical-diagram"></p>
6565
<h2>What's the downside to using static site generators?</h2>
6666
<p>The major downside is that code cannot be executed after a site is created.
6767
You are stuck with the output files so if you're used to building web

0 commit comments

Comments
 (0)