feminizer 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2258c5cbc4a732cabb52e766fbcb247946f0cb98
4
- data.tar.gz: c7699ba3756bd9373e84da39e0a65d174f4e360d
3
+ metadata.gz: 834f73768ec84e413eecb212e978a7af2a4bbc49
4
+ data.tar.gz: 1a9b519ec9c7d95840952526cbf3634f78f38af1
5
5
  SHA512:
6
- metadata.gz: 5fd1ba74d98177c59ba0a3ada662aa1e7e746a377ed3ec2178bc1384d99140e276ac8744fa5c80eb806a9fd3f10e988a47c0a1eab02ad233306f98f45ef1b87e
7
- data.tar.gz: 11dc162d7b7bf17b7215aeafa1e70b0c7025bdeb5309803bc5b69e1d69783cf0c38cac6205ffef4f21635bb5d3dcdb9d4cd2310752ada2f53ee7cb06bac6527a
6
+ metadata.gz: 8750679362da2692ebbc3f64b83a97a6c12002d03672b41337fa4fc5f525f80dc217a987d396b65932b9af42d49ab9596602dd34f91ceff9a3cbc57c6316fc79
7
+ data.tar.gz: 9bcbb2b3397c5353863622a6dd11a1b9cc1e6e6d2bc8c8154f652510b6ce27ccc7bf4cc80f55f3f97a20eac09f903be4124b52caef7956e58769ec64e6a28574
@@ -0,0 +1,44 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ feminizer (1.0.5)
5
+ activesupport
6
+ nokogiri
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ activesupport (5.0.0.1)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (~> 0.7)
14
+ minitest (~> 5.1)
15
+ tzinfo (~> 1.1)
16
+ concurrent-ruby (1.0.2)
17
+ i18n (0.7.0)
18
+ mini_portile2 (2.1.0)
19
+ minitest (5.9.1)
20
+ nokogiri (1.6.8.1)
21
+ mini_portile2 (~> 2.1.0)
22
+ power_assert (0.2.6)
23
+ shoulda (3.5.0)
24
+ shoulda-context (~> 1.0, >= 1.0.1)
25
+ shoulda-matchers (>= 1.4.1, < 3.0)
26
+ shoulda-context (1.2.1)
27
+ shoulda-matchers (2.8.0)
28
+ activesupport (>= 3.0.0)
29
+ test-unit (3.1.5)
30
+ power_assert
31
+ thread_safe (0.3.5)
32
+ tzinfo (1.2.2)
33
+ thread_safe (~> 0.1)
34
+
35
+ PLATFORMS
36
+ ruby
37
+
38
+ DEPENDENCIES
39
+ feminizer!
40
+ shoulda
41
+ test-unit
42
+
43
+ BUNDLED WITH
44
+ 1.13.3
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
 
17
17
  s.add_dependency 'nokogiri'
18
18
  s.add_dependency 'activesupport'
19
- s.add_dependency 'without_accents', '0.9.1'
19
+ s.add_development_dependency 'test-unit'
20
20
  s.add_development_dependency 'shoulda'
21
21
 
22
22
  s.files = `git ls-files`.split("\n")
@@ -1,9 +1,8 @@
1
- require 'without_accents'
2
1
  require 'nokogiri'
3
2
 
4
3
  module Feminizer
5
4
 
6
- VERSION = "1.0.6"
5
+ VERSION = "1.0.7"
7
6
 
8
7
 
9
8
  extend self
@@ -25,8 +24,8 @@ module Feminizer
25
24
  def feminize_text string
26
25
  return string if ['', '\n', "\n"].include?(string.to_s)
27
26
 
28
- string = string.dup.without_accents
29
- string = string.gsub(/\302\240/, ' ')
27
+ string = string.dup
28
+ #string = string.gsub(/\302\240/, ' ')
30
29
 
31
30
  forms.each do |masculine, feminine|
32
31
  if string =~ /#{feminine}/i
@@ -71,7 +70,7 @@ module Feminizer
71
70
 
72
71
 
73
72
  def ok
74
- @ok ||= %Q{([\s"':;\.,\>\<\?\!\{\}\(\)-])}
73
+ @ok ||= %Q{([\s"'’:;\.,\>\<\?\!\{\}\(\)-])}
75
74
  end
76
75
 
77
76
  def string_search_replace(string, from, to, mode = nil)
@@ -121,8 +120,8 @@ module Feminizer
121
120
  'dude' => 'lady',
122
121
  'dudes' => 'ladies',
123
122
  'he' => 'she',
124
- 'his' => 'her',
125
123
  'him' => 'her',
124
+ 'his' => 'her',
126
125
  'himself' => 'herself',
127
126
  'waitress' => 'waiter',
128
127
  'waitressed' => 'waited',
@@ -14,10 +14,10 @@ class FeminizerTest < Test::Unit::TestCase
14
14
 
15
15
  context "feminize_text" do
16
16
  setup {
17
- @feminized = feminize_text "The Art of Manliness - by a Man’s man, as his hobby, for masculine men everywhere"
17
+ @feminized = feminize_text "The Art of Manliness - by a Man’s man, as his hobby, to him and for masculine men everywhere"
18
18
  }
19
- should "turn all girly" do
20
- assert_equal "The Art of Womanliness - by a Woman's woman, as her hobby, for feminine women everywhere",
19
+ should "swap genders of pronouns" do
20
+ assert_equal "The Art of Womanliness - by a Womans woman, as her hobby, to her and for feminine women everywhere",
21
21
  @feminized
22
22
  end
23
23
  end
@@ -53,8 +53,8 @@ class FeminizerTest < Test::Unit::TestCase
53
53
  assert_match %r{This string started with Man in it and should turn into Woman}, @feminized
54
54
  end
55
55
  should "feminize even if a period is following the word" do
56
- assert_match %r{would be the cowgirl.},
57
- feminize_html(open("http://artofmanliness.com/2010/09/07/3-archetypes-of-american-manliness-part-ii-the-heroic-artisan/", {'User-Agent' => 'Firefox'}).read)
56
+ assert_match %r{as the cowgirl.},
57
+ feminize_html(File.read("./test/fixture.html"))
58
58
  end
59
59
  end
60
60
 
@@ -159,4 +159,4 @@ s1.parentNode.insertBefore(s, s1);
159
159
  </html>
160
160
  EOHTML
161
161
 
162
- end
162
+ end
@@ -0,0 +1,2358 @@
1
+ <!DOCTYPE html>
2
+ <!--[if IE 6]>
3
+ <html id="ie6" lang="en-US" prefix="og: http://ogp.me/ns#">
4
+ <![endif]-->
5
+ <!--[if IE 7]>
6
+ <html id="ie7" lang="en-US" prefix="og: http://ogp.me/ns#">
7
+ <![endif]-->
8
+ <!--[if IE 8]>
9
+ <html id="ie8" lang="en-US" prefix="og: http://ogp.me/ns#">
10
+ <![endif]-->
11
+ <!--[if IE 9]>
12
+ <html id="ie9" lang="en-US" prefix="og: http://ogp.me/ns#">
13
+ <![endif]-->
14
+ <!--[if (gt IE 9) | (!IE) ]><!-->
15
+ <html lang="en-US" prefix="og: http://ogp.me/ns#">
16
+ <!--<![endif]-->
17
+ <head>
18
+ <meta charset="UTF-8"/>
19
+ <link rel="shortcut icon" href="http://aom.screenfour.com/wp-content/uploads/builder-favicon/6qBqUBP7i.ico"/>
20
+ <link rel="stylesheet" href="http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/style.css?v=7.8" type="text/css" media="screen"/>
21
+ <link rel="stylesheet" href="https://content.artofmanliness.com/uploads/it-file-cache/builder-layouts/52f137ff53721.css?version=53ae863dec405f93061e41809dafbf7a" type="text/css" media="screen"/>
22
+
23
+ <!--[if lt IE 7]>
24
+ <script src="http://www.artofmanliness.com/wp-content/themes/Builder/lib/builder-core/js/dropdown.js" type="text/javascript"></script>
25
+ <![endif]-->
26
+ <!--[if lt IE 9]>
27
+ <script src="http://www.artofmanliness.com/wp-content/themes/Builder/lib/builder-core/js/html5.js" type="text/javascript"></script>
28
+ <![endif]-->
29
+ <link rel="profile" href="http://gmpg.org/xfn/11"/>
30
+ <link rel="pingback" href="http://www.artofmanliness.com/xmlrpc.php"/>
31
+ <meta name="viewport" content="width=device-width, initial-scale=1">
32
+ <script type="text/javascript">
33
+ var googletag = googletag || {};
34
+ googletag.cmd = googletag.cmd || [];
35
+ (function() {
36
+ var gads = document.createElement("script"),
37
+ useSSL = "https:" == document.location.protocol,
38
+ node = document.getElementsByTagName("script")[0];
39
+
40
+ gads.async = true;
41
+ gads.type = "text/javascript";
42
+ gads.src = (useSSL ? "https:" : "http:") + "//www.googletagservices.com/tag/js/gpt.js";
43
+ node.parentNode.insertBefore(gads, node);
44
+ })();
45
+ var width = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
46
+ var UD_GPT = {
47
+ ad_path: '/245328236/artofmanliness/content-feature',
48
+ mappings : {
49
+ wide: [
50
+ [[0, 0], [300, 50], [320, 50]],
51
+ [[480, 200], [468, 60]],
52
+ [[768, 200], [728, 90]],
53
+ [[1000, 200], [[970,250], [970, 90], [728, 90]]]
54
+ ],
55
+ side_square: [
56
+ [[0, 0], [9999, 9999]],
57
+ [[1001, 200], [300, 250]]
58
+ ],
59
+ side_variable: [
60
+ [[0, 0], [9999, 9999]],
61
+ [[1001, 200], [[300, 600], [160, 600]]]
62
+ ]
63
+ },
64
+ slots: [
65
+ {
66
+ name: 'Top',
67
+ sizes: [[728, 90], [970, 90], [970, 250], [300, 50], [320, 50], [468, 60]],
68
+ mapping: 'wide'
69
+ }
70
+ ],
71
+ targeting: {
72
+ 's1': 'content-feature',
73
+ 'page_type': 'content-feature',
74
+ 'category': 'movies', 'article_id': '33566' }
75
+ };
76
+ </script>
77
+
78
+ <script src="http://js.indexww.com/ht/urbandaddy.js"></script>
79
+
80
+
81
+
82
+ <title>The 16 Best Western Movies</title>
83
+ <meta name="description" content="We give our picks for the 16 best Western movies of all time. As you can guess, John Wayne makes a few appearances."/>
84
+ <meta name="robots" content="noodp"/>
85
+ <link rel="canonical" href="http://www.artofmanliness.com/2013/06/04/best-western-movies/"/>
86
+ <meta property="og:locale" content="en_US"/>
87
+ <meta property="og:type" content="article"/>
88
+ <meta property="og:title" content="The 16 Best Western Movies"/>
89
+ <meta property="og:description" content="We give our picks for the 16 best Western movies of all time. As you can guess, John Wayne makes a few appearances."/>
90
+ <meta property="og:url" content="http://www.artofmanliness.com/2013/06/04/best-western-movies/"/>
91
+ <meta property="og:site_name" content="The Art of Manliness"/>
92
+ <meta property="article:publisher" content="http://facebook.com/artofmanliness"/>
93
+ <meta property="article:section" content="Movies"/>
94
+ <meta property="article:published_time" content="2013-06-04T17:58:11-05:00"/>
95
+ <meta property="article:modified_time" content="2016-06-16T20:07:30-05:00"/>
96
+ <meta property="og:updated_time" content="2016-06-16T20:07:30-05:00"/>
97
+ <meta property="og:image" content="https://content.artofmanliness.com/uploads/2013/06/westerns12.jpg"/>
98
+ <meta property="og:image:width" content="550"/>
99
+ <meta property="og:image:height" content="309"/>
100
+ <meta name="twitter:card" content="summary_large_image"/>
101
+ <meta name="twitter:description" content="We give our picks for the 16 best Western movies of all time. As you can guess, John Wayne makes a few appearances."/>
102
+ <meta name="twitter:title" content="The 16 Best Western Movies"/>
103
+ <meta name="twitter:site" content="@artofmanliness"/>
104
+ <meta name="twitter:image" content="https://content.artofmanliness.com/uploads/2013/06/westerns12.jpg"/>
105
+ <meta name="twitter:creator" content="@artofmanliness"/>
106
+ <meta property="DC.date.issued" content="2013-06-04T17:58:11-05:00"/>
107
+
108
+ <link rel='dns-prefetch' href='//s.w.org'/>
109
+ <link rel="alternate" type="application/rss+xml" title="The Art of Manliness &raquo; Feed" href="http://www.artofmanliness.com/feed/"/>
110
+ <link rel="alternate" type="application/rss+xml" title="The Art of Manliness &raquo; Comments Feed" href="http://www.artofmanliness.com/comments/feed/"/>
111
+ <link rel="alternate" type="application/rss+xml" title="The Art of Manliness &raquo; The 17 Best Western Movies Comments Feed" href="http://www.artofmanliness.com/2013/06/04/best-western-movies/feed/"/>
112
+ <link rel='stylesheet' id='ai-core-style-css' href='http://www.artofmanliness.com/wp-content/plugins/aesop-story-engine/public/assets/css/ai-core.css?ver=1' type='text/css' media='all'/>
113
+ <style id='ai-core-style-inline-css' type='text/css'>.aesop-gallery-component .aesop-component-caption{color:#333;padding:0.25rem 0.75rem;background:rgba(255,255,255,0.9);font-size:14px;}.aesop-stacked-img{background-attachment:fixed;background-position:50%;background-repeat:no-repeat;background-size:cover;width:100%;left:0;top:0;position:relative;overflow:hidden;}.aesop-stacked-img .aesop-stacked-caption{position:absolute;bottom:20px;right:20px;z-index:0;color:#333;padding:0.25rem 0.75rem;background:rgba(255,255,255,0.9);font-size:14px;-webkit-transition:all 0.75s ease-in-out;transition:all 0.75s ease-in-out;}.aesop-sequence-img-wrap .aesop-sequence-caption{padding-left:4.5rem;}.aesop-sequence-img-wrap .aesop-sequence-caption:before{left:0;bottom:-4px;font-weight:bold;line-height:1;padding:0.6rem 0.75rem;border:1px solid;border-color:inherit;content:counter(sequence-counter,decimal-leading-zero);counter-increment:sequence-counter;}.aesop-sequence-img-wrap .aesop-sequence-img{width:100%;max-width:1200px;display:block;}.aesop-hero-gallery-wrapper{position:relative;}.aesop-hero-gallery-content{position:absolute;top:20px;margin-left:auto;margin-right:auto;}.aesopicon-search-plus{position:relative;}.aesopicon-search-plus:after{display:inline-block;font-family:'Dashicons';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:'\f179';}.aesop-parallax-component{clear:both;}.aesop-parallax-component .aesop-parallax-sc{margin:0;}.aesop-content-component .aesop-content-comp-wrap{padding:1.5em 2em;}@media (max-width: 766px) {.aesop-content-component .aesop-content-comp-wrap{padding:1em;}}.aesop-content-component .aesop-content-comp-inner p{line-height:1.2em;}.aesop-content-component .aesop-content-img .aesop-content-comp-inner{background:rgba(255,255,255,0.5);padding:1rem;line-height:1.3;}.aesop-content-component .aesop-content-img .aesop-content-comp-inner p{margin-bottom:0;}.aesop-image-component img{-webkit-box-shadow:0 0 6px -1px rgba(0,0,0,0.5);box-shadow:0 0 6px -1px rgba(0,0,0,0.5);}.aesop-image-component .aesop-lightbox{text-decoration:none;display:block;}.aesop-image-component .aesop-img-enlarge{margin:0 0 0.5rem;}.aesop-image-component .aesop-img-enlarge:hover{text-decoration:none;}.aesop-image-component .aesop-img-enlarge i{position:relative;top:1px;}.aesop-image-component .aesop-img-enlarge,.aesop-image-component .aesop-image-component-caption{color:#b3b3b3;font-size:12px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}.aesop-image-component .aesop-cap-cred,.aesop-image-component .aesop-img-enlarge{color:#b3b3b3;}.aesop-image-component .aesop-cap-cred{border-top:1px dotted #b3b3b3;font-size:9px;}.aesop-image-component:hover{opacity:0.85;filter:alpha(opacity=85);-webkit-transition:opacity 0.25s ease-in-out;transition:opacity 0.25s ease-in-out;}.aesop-image-component:active img{box-shadow:none;}.aesop-video-component .aesop-video-component-caption{color:#b3b3b3;}.aesop-video-component .aesop-component-caption{color:#333;padding:0.25rem 0.75rem;background:rgba(255,255,255,0.9);font-size:14px;}.aesop-video-chapter .aesop-cover-title{z-index:1;}.mejs-container{width:100%;max-width:800px!important;margin-left:auto;margin-right:auto;}.mejs-container+p{margin-top:1rem;}.aesop-quote-component{padding:3rem 2rem;}.aesop-quote-component blockquote{font-style:italic;}.aesop-quote-component cite{display:block;font-size:14px;}.aesop-on-genesis .aesop-quote-component blockquote:before{content:none;}.aesop-story-collection .aesop-story-collection-title{text-align:center;background:#fff;color:white;text-transform:uppercase;font-size:1.75rem;line-height:1.75rem;letter-spacing:0.05rem;padding:0.8rem 0 0.6rem;margin:0;z-index:2;position:relative;-webkit-box-shadow:0 7px 7px -7px #000000;box-shadow:0 7px 7px -7px #000000;}.aesop-story-collection .aesop-collection-item{float:left;position:relative;height:200px;}.aesop-story-collection .aesop-collection-item .aesop-collection-item-link{display:table;height:100%;width:100%;color:white;-webkit-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.aesop-story-collection .aesop-collection-item .aesop-collection-item-link:before{position:absolute;content:'';width:100%;height:100%;background:black;opacity:0.65;filter:alpha(opacity=65);z-index:1;}.aesop-story-collection .aesop-collection-item .aesop-collection-item-link:hover{text-decoration:none;-webkit-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.aesop-story-collection .aesop-collection-item .aesop-collection-item-link:hover:before{-webkit-transition:opacity 0.25s linear;transition:opacity 0.25s linear;opacity:0;filter:alpha(opacity=0);}.aesop-story-collection .aesop-collection-item .aesop-collection-item-link:hover .aesop-collection-item-inner{background:rgba(0,0,0,0.5);}.aesop-story-collection .aesop-collection-item .aesop-collection-item-inner{display:table-cell;vertical-align:middle;width:100%;height:100%;padding:0 2.5rem;position:relative;text-align:center;z-index:1;overflow:hidden;text-shadow:0 0 3px rgba(0,0,0,0.6);}.aesop-story-collection .aesop-collection-item .aesop-collection-item-inner .aesop-collection-entry-title{font-weight:800;margin:0 0 0.75rem;text-transform:uppercase;color:white;}.aesop-story-collection .aesop-collection-item .aesop-collection-item-inner .aesop-collection-item-excerpt{font-size:12px;}.aesop-story-collection .aesop-collection-item .aesop-collection-item-inner .aesop-collection-meta{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;margin-bottom:3rem;font-style:italic;}.aesop-story-collection .aesop-collection-item .aesop-collection-item-img{position:absolute;width:100%;height:100%;left:0;z-index:0;background-position:center center;}.aesop-story-collection .aesop-collection-splash .aesop-collection-item-link:before{content:none;}.aesop-story-collection .aesop-collection-splash .aesop-collection-item-link:hover .aesop-collection-item-inner{background:transparent;}.aesop-story-collection .aesop-collection-splash .aesop-collection-item-inner .aesop-collection-entry-title{color:#333;text-shadow:none;}.jorgen-article-cover-wrap{position:fixed;}.aesop-article-chapter-wrap{position:relative;}.aesop-article-chapter-wrap.aesop-video-chapter .aesop-cover-title{max-width:100%;margin:0;padding-bottom:20px;top:150px;border-bottom:1px solid #fff;font-size:62px!important;color:#fff;width:90%;left:10%;position:absolute;z-index:1;}.aesop-article-chapter-wrap.aesop-video-chapter .aesop-cover-title small{font-size:40px;}@media (max-width: 800px) {.aesop-article-chapter-wrap .aesop-cover-title{font-size:52px;}.aesop-article-chapter-wrap .aesop-cover-title small{font-size:42px;}}@media (max-width: 480px) {.aesop-article-chapter-wrap .aesop-cover-title{display:block;bottom:30px;font-size:32px;}.aesop-article-chapter-wrap .aesop-cover-title small{display:block;font-size:20px;}}.aesop-cover-title{max-width:100%;margin:0;padding-bottom:20px;bottom:100px;border-bottom:1px solid #fff;font-size:62px!important;color:#fff;width:90%;left:10%;position:absolute;z-index:1;}.aesop-cover-title small{font-size:40px;}.aesop-toggle-chapter-menu{position:fixed;right:-1px;bottom:57px;height:44px;width:44px;background:#e6e6e6;border-top-left-radius:2px;border-bottom-left-radius:2px;z-index:150;-webkit-transition:right 0.25s ease;transition:right 0.25s ease;}.aesop-toggle-chapter-menu:hover{background:#007aac;text-decoration:none;}.aesop-toggle-chapter-menu:hover i{color:white;}.aesop-toggle-chapter-menu i{color:#007aac;}.aesop-chapter-menu-open .aesop-chapter-menu{right:0;}.aesop-chapter-menu-open .aesop-toggle-chapter-menu{right:250px;}.aesop-close-chapter-menu{position:absolute;top:12px;right:12px;z-index:1;}.aesop-close-chapter-menu:hover{cursor:pointer;}.aesop-chapter-menu{right:-250px;width:250px;top:0;position:fixed;bottom:0;background:#e6e6e6;-webkit-transition:right 0.25s ease;transition:right 0.25s ease;z-index:500;counter-reset:sequence-counter;color:#777;}.aesop-chapter-menu .scroll-nav__list{margin:0;padding:0;}.aesop-chapter-menu *{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;}.aesop-chapter-menu li{display:block;margin-bottom:0;position:relative;padding-left:15px;font:normal 14px/28px Arial,Helvetica,sans-serif;}.aesop-chapter-menu li:before{content:counter(sequence-counter,upper-roman);counter-increment:sequence-counter;position:absolute;left:0;}.aesop-chapter-menu a:link,.aesop-chapter-menu .scroll-nav__link{color:#777;padding-top:5px;padding-bottom:5px;}.admin-bar .aesop-chapter-menu{top:32px;}.aesop-chapter-menu--inner{padding:15px;}.aesop-chapter-title{position:absolute;left:-10000px;}.aesop-character-component .aesop-character-float{margin:.65rem 0;width:150px;text-align:center;}.aesop-character-component .aesop-character-float .aesop-character-title{vertical-align:top;font-size:12px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#b3b3b3;text-transform:uppercase;letter-spacing:0.05em;display:block;text-align:center;margin:0 0 0.5rem;}.aesop-character-component .aesop-character-float.aesop-character-right{float:right;margin-left:1.75rem;}.aesop-character-component .aesop-character-float.aesop-character-center{margin-left:auto;margin-right:auto;}.aesop-character-component .aesop-character-float.aesop-character-center .aesop-character-name{text-align:center;}.aesop-character-component .aesop-character-float.aesop-character-left{float:left;margin-right:1.75rem;}.aesop-character-component .aesop-character-avatar{width:90%;border-radius:50%;}.aesop-character-component .aesop-character-cap{font-size:12px;line-height:14px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#b3b3b3;font-style:italic;margin-top:0.8rem;border-top:1px dotted #b3b3b3;padding-top:0.3rem;}.aesop-document-component a{font-size:12px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color:#b3b3b3;line-height:12px;text-decoration:none;}.aesop-document-component a span{border-bottom:1px solid #e6e6e6;font-size:12px;color:#808080;}.aesop-document-component a span:before{content:'\f498';font-family:Dashicons;position:absolute;left:0;}.aesop-timeline{position:fixed;bottom:0;left:0;right:0;}.aesop-timeline ol{margin:0;padding:0;position:relative;background:#e6e6e6;padding:5px 10px;-webkit-box-shadow:inset 0 7px 7px -7px #808080;box-shadow:inset 0 7px 7px -7px #808080;}.aesop-timeline ol:before,.aesop-timeline ol:after{content:" ";display:table;}.aesop-timeline ol:after{clear:both;}.aesop-timeline ol li{display:inline-block;margin-right:5px;}.aesop-timeline ol li:last-child{margin-right:0;}.aesop-timeline ol li a{text-transform:uppercase;font-size:14px;color:inherit;padding:2px 10px 8px;display:block;position:relative;}.aesop-timeline ol li a:after{content:'';height:20px;border-right:1px solid #666666;width:1px;position:absolute;left:50%;bottom:-10px;}.aesop-timeline ol li.active a{color:#428bca;}.aesop-timeline ol li.active a:after{border-right-color:#428bca;}</style>
114
+ <link rel='stylesheet' id='dashicons-css' href='http://www.artofmanliness.com/wp-includes/css/dashicons.min.css?ver=4.6.1' type='text/css' media='all'/>
115
+ <script type='text/javascript' src='http://www.artofmanliness.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
116
+ <script type='text/javascript' src='http://www.artofmanliness.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
117
+ <link rel='https://api.w.org/' href='http://www.artofmanliness.com/wp-json/'/>
118
+ <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.artofmanliness.com/xmlrpc.php?rsd"/>
119
+ <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://www.artofmanliness.com/wp-includes/wlwmanifest.xml"/>
120
+ <meta name="generator" content="WordPress 4.6.1"/>
121
+ <link rel='shortlink' href='http://aom.is/Bn47V'/>
122
+ <link rel="alternate" type="application/json+oembed" href="http://www.artofmanliness.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.artofmanliness.com%2F2013%2F06%2F04%2Fbest-western-movies%2F"/>
123
+ <link rel="alternate" type="text/xml+oembed" href="http://www.artofmanliness.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.artofmanliness.com%2F2013%2F06%2F04%2Fbest-western-movies%2F&#038;format=xml"/>
124
+ <link rel='https://github.com/WP-API/WP-API' href='http://www.artofmanliness.com/wp-json'/>
125
+
126
+ <style type="text/css" id="shiftnav-dynamic-css">#shiftnav-toggle-main{background:#87240f;color:#ffffff;}@media only screen and (min-width:1001px){#shiftnav-toggle-main,.shiftnav-toggle-mobile{display:none;}.shiftnav-wrap{padding-top:0!important;}body.shiftnav-disable-shift-body{padding-top:0!important;}}#shiftnav-toggle-main{background:#87240f;}.shiftnav-menu li.menu-item{background:#87240f!important;}.shiftnav-menu{background:#4c0f0d;}.shiftnav-menu li.menu-item>.shiftnav-target{border-bottom:1px solid #330000;border-top:none;}.shiftnav-target{color:#ffffff!important;}.shiftnav{background:#4c0f0d;}.shiftnav .fa{color:#ffffff;}</style>
127
+
128
+ <script type='text/javascript'>
129
+ (function() {
130
+ var bsl=document.createElement('script');
131
+ bsl.type='text/javascript';bsl.async=true;bsl.src='https://content.artofmanliness.com/uploads/it-file-cache/builder-core/script.js?ver=72';
132
+ var se=document.getElementsByTagName('script')[0];se.parentNode.insertBefore(bsl,se);
133
+ })();
134
+ </script>
135
+ <meta name="viewport" content="width=device-width"/>
136
+ <meta name="google-site-verification" content="etwAKZ8n0mKVjC_JGfN657c3BqvPNTsKK8ZKu5CYiOs"/>
137
+ <script type="text/javascript">var p="http",d="static";if(document.location.protocol=="https:"){p+="s";d="engine";}var z=document.createElement("script");z.type="text/javascript";z.async=true;z.src=p+"://"+d+".adzerk.net/ados.js";var s=document.getElementsByTagName("script")[0];s.parentNode.insertBefore(z,s);</script>
138
+ <script type="text/javascript">
139
+ var ados = ados || {};
140
+ ados.run = ados.run || [];
141
+ ados.run.push(function() {
142
+ /* load placement for account: artofmanliness, site: Art of Manliness, size: 300x600 - Half Page, zone: Store*/
143
+ ados_add_placement(8378, 53096, "azk37352",[ 43, 5]).setZone(149787);
144
+ /* load placement for account: artofmanliness, site: Art of Manliness, size: 300x250 - Medium Rectangle, zone: Holiday*/
145
+ ados_add_placement(8378, 53096, "azk74716", 5).setZone(124257);
146
+ ados_load();
147
+ });</script>
148
+ <meta property="fb:pages" content="9041660987"/>
149
+
150
+ <script>
151
+ !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
152
+ n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
153
+ n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
154
+ t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
155
+ document,'script','https://connect.facebook.net/en_US/fbevents.js');
156
+
157
+ fbq('init', '475367885952701');
158
+ fbq('track', "PageView");</script>
159
+ <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=475367885952701&ev=PageView&noscript=1"/></noscript>
160
+
161
+
162
+ </head><body id="builder-layout-52f137ff53721" class="single single-post postid-33566 single-format-standard builder-responsive browser-chrome os-windows aesop-core aesop-on- builder-template-single builder-view-singular builder-view-post builder-view-post-33566">
163
+ <div class="builder-container-background-wrapper">
164
+ <div class="builder-container-outer-wrapper">
165
+ <div class="builder-container" id="builder-container-52f137ff53721">
166
+ <div class="top-bar-container">
167
+ <nav class="top-bar" style="">
168
+ <section class="top-bar-section">
169
+ <ul class="top-bar-menu left" id="menu-main-menu">
170
+ <li class="divider"></li>
171
+ <li class="home menu-item menu-item-type-custom menu-item-object-custom "><a href="http://www.artofmanliness.com" data-wpel-link="internal">Home</a></li>
172
+ <li class="divider"></li>
173
+ <li class="toggle-topbar menu-item menu-item-type-custom menu-item-object-custom"><a href="#" data-wpel-link="internal">Sections</a></li>
174
+ <li class="divider"></li>
175
+ <li class="category-3 menu-item menu-item-type-taxonomy menu-item-object-category menu-item-3 " id="menu-item-3"><a href="http://www.artofmanliness.com/category/a-mans-life/" data-wpel-link="internal">A Man's Life</a></li>
176
+ <li class="divider"></li>
177
+ <li class="category-5 menu-item menu-item-type-taxonomy menu-item-object-category menu-item-5 " id="menu-item-5"><a href="http://www.artofmanliness.com/category/dress-grooming/" data-wpel-link="internal">Dress &amp; Grooming</a></li>
178
+ <li class="divider"></li>
179
+ <li class="category-7 menu-item menu-item-type-taxonomy menu-item-object-category menu-item-7 " id="menu-item-7"><a href="http://www.artofmanliness.com/category/health-sports/" data-wpel-link="internal">Health &amp; Sports</a></li>
180
+ <li class="divider"></li>
181
+ <li class="category-11 menu-item menu-item-type-taxonomy menu-item-object-category menu-item-11 " id="menu-item-11"><a href="http://www.artofmanliness.com/category/manly-skills/" data-wpel-link="internal">Manly Skills</a></li>
182
+ <li class="divider"></li>
183
+ <li class="category-12 menu-item menu-item-type-taxonomy menu-item-object-category menu-item-12 " id="menu-item-12"><a href="http://www.artofmanliness.com/category/money-career/" data-wpel-link="internal">Money &amp; Career</a></li>
184
+ <li class="divider"></li>
185
+ <li class="category-65 menu-item menu-item-type-taxonomy menu-item-object-category menu-item-65 " id="menu-item-65"><a href="http://www.artofmanliness.com/category/relationships-family/" data-wpel-link="internal">Relationships &amp; Family</a></li>
186
+ <li class="divider"></li>
187
+ <li class="category-156 menu-item menu-item-type-taxonomy menu-item-object-category menu-item-156 " id="menu-item-156"><a href="http://www.artofmanliness.com/category/podcast/" data-wpel-link="internal">Podcast</a></li>
188
+ <li class="divider"></li>
189
+ <li class="shop menu-item menu-item-type-custom menu-item-object-custom"><a href="https://store.artofmanliness.com" target="_blank" class="ss-cart" data-wpel-link="external" rel="external noopener noreferrer">Shop</a></li>
190
+ <li class="divider"></li>
191
+ <li class="has-dropdown menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children"><a href="" class="more-click" data-wpel-link="internal">More</a>
192
+ <ul class="sub-menu dropdown">
193
+ <li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="//www.artofmanliness.com/archives/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Archives</a></li>
194
+ <li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="//www.artofmanliness.com/man-knowledge/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Man Knowledge</a></li>
195
+ <li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://www.artofmanliness.com/podcast/" data-wpel-link="internal">Podcast</a></li>
196
+ <li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://www.artofmanliness.com/category/travel-leisure/" data-wpel-link="internal">Travel & Leisure</a></li>
197
+ <li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="https://www.youtube.com/user/artofmanliness/videos" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Video</a></li>
198
+ <li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="//www.artofmanliness.com/about-2/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">About</a></li>
199
+ <li class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://community.artofmanliness.com/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Community</a></li>
200
+ </ul>
201
+ </li>
202
+ </ul>
203
+ <ul class="nav-right nav-1024-1280">
204
+ <li class="has-form has-form-1024-1280">
205
+ <form action="http://www.artofmanliness.com" id="searchform" method="get">
206
+ <input type="text" id="s" name="s" value="" placeholder="search">
207
+ <input type="submit" class="hide" value="Search">
208
+ </form>
209
+ </li>
210
+ <li class="nav-right-icon"><a class="ss-icon ss-standard search-icon" data-wpel-link="internal">search</a></li>
211
+ </ul>
212
+ <ul class="nav-right">
213
+ <li class="nav-right-icon"><a href="http://instagram.com/artofmanliness#" class="ss-icon ss-social" target="_blank" data-wpel-link="external" rel="external noopener noreferrer">Instagram</a></li>
214
+ <li class="nav-right-icon"><a href="https://twitter.com/artofmanliness" class="ss-icon ss-social" target="_blank" data-wpel-link="external" rel="external noopener noreferrer">Twitter</a></li>
215
+ <li class="nav-right-icon"><a class="ss-icon ss-social" href="http://www.facebook.com/artofmanliness" target="_blank" data-wpel-link="external" rel="external noopener noreferrer">Facebook</a></li>
216
+ <li class="has-form">
217
+ <form action="http://www.artofmanliness.com" id="searchform" method="get">
218
+ <input type="text" id="s" name="s" value="" placeholder="search">
219
+ <input type="submit" class="hide" value="Search">
220
+ </form>
221
+ </li>
222
+ </ul>
223
+ </section>
224
+ </nav>
225
+ <div class="main-nav-dropdown">
226
+ <div class="container">
227
+ <div class="row-fluid category-3 masthead-dropdown has-sidebar hidden" data-id="category-3">
228
+ <div class="small-2 menu-background subcategory">
229
+ <ul>
230
+ <li class="selected left-crm-item" data-id="category-336"><a href="http://www.artofmanliness.com/category/a-mans-life/good-man-gmc/" data-wpel-link="internal">Art of Being a Good Man</a></li>
231
+ <li class="crm-not-selected left-crm-item" data-id="category-8"><a href="http://www.artofmanliness.com/category/a-mans-life/lessons-in-manliness/" data-wpel-link="internal">Lessons In Manliness</a></li>
232
+ <li class="crm-not-selected left-crm-item" data-id="category-73"><a href="http://www.artofmanliness.com/category/a-mans-life/manvotional/" data-wpel-link="internal">Manvotionals</a></li>
233
+ <li class="crm-not-selected left-crm-item" data-id="category-213"><a href="http://www.artofmanliness.com/category/a-mans-life/manhood/" data-wpel-link="internal">On Manhood</a></li>
234
+ <li class="crm-not-selected left-crm-item" data-id="category-212"><a href="http://www.artofmanliness.com/category/a-mans-life/virtue/" data-wpel-link="internal">On Virtue</a></li>
235
+ <li class="crm-not-selected left-crm-item" data-id="category-214"><a href="http://www.artofmanliness.com/category/a-mans-life/personal-development/" data-wpel-link="internal">Personal Development</a></li>
236
+ <li><a style="color: #b5aa98;" href="http://www.artofmanliness.com/category/a-mans-life/" data-wpel-link="internal">Browse A Man's Life</a></li>
237
+ </ul>
238
+ </div>
239
+ <div class="subcategory-drawer row-fluid">
240
+ <div class="category-336 first-drawer" data-id="category-336">
241
+ <article class="small-3 columns">
242
+ <header>
243
+ <a href="http://www.artofmanliness.com/2016/09/20/think-better-feet-improve-working-memory/" data-wpel-link="internal">
244
+ <div class="navth thumb_container">
245
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/workingmemory-e1474061944954-1-538x280.jpg">
246
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/workingmemory-e1474061944954-1-538x280.jpg"></noscript>
247
+ </div>
248
+ <h2 class="post-title">Think Better on Your Feet: How to Improve Your Working Memory</h2>
249
+ </a>
250
+ </header>
251
+ <footer></footer>
252
+ </article>
253
+ <article class="small-3 columns">
254
+ <header>
255
+ <a href="http://www.artofmanliness.com/2016/09/06/podcast-232-become-the-chief-financial-officer-of-family-inc/" data-wpel-link="internal">
256
+ <div class="navth thumb_container">
257
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.10.25-AM-538x280.png">
258
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.10.25-AM-538x280.png"></noscript>
259
+ </div>
260
+ <h2 class="post-title">Podcast #232: Become the Chief Financial Officer of Family Inc.</h2>
261
+ </a>
262
+ </header>
263
+ <footer></footer>
264
+ </article>
265
+ <article class="small-3 columns">
266
+ <header>
267
+ <a href="http://www.artofmanliness.com/2016/08/30/are-we-there-yet-how-to-have-fun-with-the-family-in-the-car/" data-wpel-link="internal">
268
+ <div class="navth thumb_container">
269
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/Are-We-There-Yet-1-538x280.jpg">
270
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/Are-We-There-Yet-1-538x280.jpg"></noscript>
271
+ </div>
272
+ <h2 class="post-title">How to Have Fun With the Family While You Drive</h2>
273
+ </a>
274
+ </header>
275
+ <footer></footer>
276
+ </article>
277
+ <article class="small-3 columns">
278
+ <header>
279
+ <a href="http://www.artofmanliness.com/2016/08/24/how-to-forge-true-confidence/" data-wpel-link="internal">
280
+ <div class="navth thumb_container">
281
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/confidence-featured.png">
282
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/confidence-featured.png"></noscript>
283
+ </div>
284
+ <h2 class="post-title">How to Forge True Confidence</h2>
285
+ </a>
286
+ </header>
287
+ <footer></footer>
288
+ </article>
289
+ </div>
290
+ <div class="category-8" data-id="category-8">
291
+ <article class="small-3 columns">
292
+ <header>
293
+ <a href="http://www.artofmanliness.com/2016/04/04/9-things-a-grown-man-can-learn-from-the-hardy-boys/" data-wpel-link="internal">
294
+ <div class="navth thumb_container">
295
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/04/tower-408x280.png">
296
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/04/tower-408x280.png"></noscript>
297
+ </div>
298
+ <h2 class="post-title">9 Things a Grown Man Can Learn From the Hardy Boys</h2>
299
+ </a>
300
+ </header>
301
+ <footer></footer>
302
+ </article>
303
+ <article class="small-3 columns">
304
+ <header>
305
+ <a href="http://www.artofmanliness.com/2016/02/02/turn-your-excuses-into-action-the-do-what-you-can-guide-from-the-blind-teenage-leader-of-the-french-resistance/" data-wpel-link="internal">
306
+ <div class="navth thumb_container">
307
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/02/DWYC-Header-1-538x280.jpg">
308
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/02/DWYC-Header-1-538x280.jpg"></noscript>
309
+ </div>
310
+ <h2 class="post-title">Turn Your Excuses Into Action: The “Do What You Can” Guide from the Blind, Teenage Leader of the French Resistance</h2>
311
+ </a>
312
+ </header>
313
+ <footer></footer>
314
+ </article>
315
+ <article class="small-3 columns">
316
+ <header>
317
+ <a href="http://www.artofmanliness.com/2015/09/30/lessons-from-the-sioux-in-how-to-turn-a-boy-into-a-man/" data-wpel-link="internal">
318
+ <div class="navth thumb_container">
319
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/09/east4-398x280.jpg">
320
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/09/east4-398x280.jpg"></noscript>
321
+ </div>
322
+ <h2 class="post-title">Lessons from the Sioux in How to Turn a Boy Into a Man</h2>
323
+ </a>
324
+ </header>
325
+ <footer></footer>
326
+ </article>
327
+ <article class="small-3 columns">
328
+ <header>
329
+ <a href="http://www.artofmanliness.com/2015/05/21/viking-mythology-what-a-man-can-learn-from-tyr/" data-wpel-link="internal">
330
+ <div class="navth thumb_container">
331
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/05/tyr-feature.png">
332
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/05/tyr-feature.png"></noscript>
333
+ </div>
334
+ <h2 class="post-title">Viking Mythology: What a Man Can Learn From Tyr</h2>
335
+ </a>
336
+ </header>
337
+ <footer></footer>
338
+ </article>
339
+ </div>
340
+ <div class="category-73" data-id="category-73">
341
+ <article class="small-3 columns">
342
+ <header>
343
+ <a href="http://www.artofmanliness.com/2016/10/01/manvotional-character-soldier/" data-wpel-link="internal">
344
+ <div class="navth thumb_container">
345
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/soldier-feat-451x280.png">
346
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/soldier-feat-451x280.png"></noscript>
347
+ </div>
348
+ <h2 class="post-title">Manvotional: The Character of a Soldier</h2>
349
+ </a>
350
+ </header>
351
+ <footer></footer>
352
+ </article>
353
+ <article class="small-3 columns">
354
+ <header>
355
+ <a href="http://www.artofmanliness.com/2016/09/10/manvotional-lifes-challenge/" data-wpel-link="internal">
356
+ <div class="navth thumb_container">
357
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/think.png">
358
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/think.png"></noscript>
359
+ </div>
360
+ <h2 class="post-title">Manvotional: Life's Challenge</h2>
361
+ </a>
362
+ </header>
363
+ <footer></footer>
364
+ </article>
365
+ <article class="small-3 columns">
366
+ <header>
367
+ <a href="http://www.artofmanliness.com/2016/07/23/manvotional-jack-london-on-developing-a-philosophy-of-life/" data-wpel-link="internal">
368
+ <div class="navth thumb_container">
369
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/10/jack-500x280.jpg">
370
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/10/jack-500x280.jpg"></noscript>
371
+ </div>
372
+ <h2 class="post-title">Manvotional: Jack London on Developing a Philosophy of Life</h2>
373
+ </a>
374
+ </header>
375
+ <footer></footer>
376
+ </article>
377
+ <article class="small-3 columns">
378
+ <header>
379
+ <a href="http://www.artofmanliness.com/2016/06/11/manvotional-the-happy-habit-of-living-for-the-day-only/" data-wpel-link="internal">
380
+ <div class="navth thumb_container">
381
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/life-538x280.jpg">
382
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/life-538x280.jpg"></noscript>
383
+ </div>
384
+ <h2 class="post-title">Manvotional: The Happy Habit of Living for the Day Only</h2>
385
+ </a>
386
+ </header>
387
+ <footer></footer>
388
+ </article>
389
+ </div>
390
+ <div class="category-213" data-id="category-213">
391
+ <article class="small-3 columns">
392
+ <header>
393
+ <a href="http://www.artofmanliness.com/2016/10/14/podcast-243-becoming-barbarian/" data-wpel-link="internal">
394
+ <div class="navth thumb_container">
395
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/barbarian-1-538x274.jpg">
396
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/barbarian-1-538x274.jpg"></noscript>
397
+ </div>
398
+ <h2 class="post-title">Podcast #243: Becoming a Barbarian</h2>
399
+ </a>
400
+ </header>
401
+ <footer></footer>
402
+ </article>
403
+ <article class="small-3 columns">
404
+ <header>
405
+ <a href="http://www.artofmanliness.com/2016/08/22/the-feminization-of-christianity/" data-wpel-link="internal">
406
+ <div class="navth thumb_container">
407
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/christianheader-538x280.jpg">
408
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/christianheader-538x280.jpg"></noscript>
409
+ </div>
410
+ <h2 class="post-title">The Feminization of Christianity</h2>
411
+ </a>
412
+ </header>
413
+ <footer></footer>
414
+ </article>
415
+ <article class="small-3 columns">
416
+ <header>
417
+ <a href="http://www.artofmanliness.com/2016/08/08/is-christianity-an-inherently-feminine-religion/" data-wpel-link="internal">
418
+ <div class="navth thumb_container">
419
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/church-538x280.jpg">
420
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/church-538x280.jpg"></noscript>
421
+ </div>
422
+ <h2 class="post-title">Is Christianity an Inherently Feminine Religion?</h2>
423
+ </a>
424
+ </header>
425
+ <footer></footer>
426
+ </article>
427
+ <article class="small-3 columns">
428
+ <header>
429
+ <a href="http://www.artofmanliness.com/2016/08/01/christianitys-manhood-problem-an-introduction/" data-wpel-link="internal">
430
+ <div class="navth thumb_container">
431
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/couplepraying-511x280.png">
432
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/couplepraying-511x280.png"></noscript>
433
+ </div>
434
+ <h2 class="post-title">Christianity's Manhood Problem: An Introduction</h2>
435
+ </a>
436
+ </header>
437
+ <footer></footer>
438
+ </article>
439
+ </div>
440
+ <div class="category-212" data-id="category-212">
441
+ <article class="small-3 columns">
442
+ <header>
443
+ <a href="http://www.artofmanliness.com/2016/05/19/courage-vs-boldness-how-to-live-with-spartan-bravery/" data-wpel-link="internal">
444
+ <div class="navth thumb_container">
445
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/sparta-copy-538x280.jpg">
446
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/sparta-copy-538x280.jpg"></noscript>
447
+ </div>
448
+ <h2 class="post-title">Courage Vs. Boldness: How to Live With Spartan Bravery</h2>
449
+ </a>
450
+ </header>
451
+ <footer></footer>
452
+ </article>
453
+ <article class="small-3 columns">
454
+ <header>
455
+ <a href="http://www.artofmanliness.com/2016/03/21/podcast-185-forces-of-character/" data-wpel-link="internal">
456
+ <div class="navth thumb_container">
457
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/03/forcesofcharacter-333x280.jpg">
458
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/03/forcesofcharacter-333x280.jpg"></noscript>
459
+ </div>
460
+ <h2 class="post-title">Podcast #185: Forces of Character</h2>
461
+ </a>
462
+ </header>
463
+ <footer></footer>
464
+ </article>
465
+ <article class="small-3 columns">
466
+ <header>
467
+ <a href="http://www.artofmanliness.com/2016/03/07/the-7-key-mindset-changes-for-shifting-from-passive-idleness-to-active-readiness/" data-wpel-link="internal">
468
+ <div class="navth thumb_container">
469
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/03/ready-408x280.png">
470
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/03/ready-408x280.png"></noscript>
471
+ </div>
472
+ <h2 class="post-title">The 7 Key Mindset Changes for Shifting from Passive Idleness to Active Readiness</h2>
473
+ </a>
474
+ </header>
475
+ <footer></footer>
476
+ </article>
477
+ <article class="small-3 columns">
478
+ <header>
479
+ <a href="http://www.artofmanliness.com/2016/01/05/podcast-166-self-soul-and-living-a-more-idealistic-life/" data-wpel-link="internal">
480
+ <div class="navth thumb_container">
481
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/01/self-and-soul-1.jpg">
482
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/01/self-and-soul-1.jpg"></noscript>
483
+ </div>
484
+ <h2 class="post-title">Podcast #166: Self, Soul, and Living a More Idealistic Life</h2>
485
+ </a>
486
+ </header>
487
+ <footer></footer>
488
+ </article>
489
+ </div>
490
+ <div class="category-214" data-id="category-214">
491
+ <article class="small-3 columns">
492
+ <header>
493
+ <a href="http://www.artofmanliness.com/2016/03/07/the-7-key-mindset-changes-for-shifting-from-passive-idleness-to-active-readiness/" data-wpel-link="internal">
494
+ <div class="navth thumb_container">
495
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/03/ready-408x280.png">
496
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/03/ready-408x280.png"></noscript>
497
+ </div>
498
+ <h2 class="post-title">The 7 Key Mindset Changes for Shifting from Passive Idleness to Active Readiness</h2>
499
+ </a>
500
+ </header>
501
+ <footer></footer>
502
+ </article>
503
+ <article class="small-3 columns">
504
+ <header>
505
+ <a href="http://www.artofmanliness.com/2016/01/20/podcast-170-level-up-your-life/" data-wpel-link="internal">
506
+ <div class="navth thumb_container">
507
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/01/level-up-life-featured-538x280.png">
508
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/01/level-up-life-featured-538x280.png"></noscript>
509
+ </div>
510
+ <h2 class="post-title">Podcast #170: Level Up Your Life</h2>
511
+ </a>
512
+ </header>
513
+ <footer></footer>
514
+ </article>
515
+ <article class="small-3 columns">
516
+ <header>
517
+ <a href="http://www.artofmanliness.com/2016/01/12/how-superheroes-movies-and-video-games-taught-me-to-conquer-fear/" data-wpel-link="internal">
518
+ <div class="navth thumb_container">
519
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/01/pit2-538x280.jpg">
520
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/01/pit2-538x280.jpg"></noscript>
521
+ </div>
522
+ <h2 class="post-title">How Superheroes, Movies, and Video Games Taught Me to Conquer Fear</h2>
523
+ </a>
524
+ </header>
525
+ <footer></footer>
526
+ </article>
527
+ <article class="small-3 columns">
528
+ <header>
529
+ <a href="http://www.artofmanliness.com/2016/01/12/podcast-168-the-value-of-deep-work-in-the-age-of-distraction/" data-wpel-link="internal">
530
+ <div class="navth thumb_container">
531
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/01/deep-work-cal-newport-lrg-e1452616727653-1-331x280.jpg">
532
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/01/deep-work-cal-newport-lrg-e1452616727653-1-331x280.jpg"></noscript>
533
+ </div>
534
+ <h2 class="post-title">Podcast #168: The Value of Deep Work in the Age of Distraction</h2>
535
+ </a>
536
+ </header>
537
+ <footer></footer>
538
+ </article>
539
+ </div>
540
+ </div>
541
+ </div>
542
+ <div class="row-fluid category-5 masthead-dropdown has-sidebar hidden" data-id="category-5">
543
+ <div class="small-2 menu-background subcategory">
544
+ <ul>
545
+ <li class="selected left-crm-item" data-id="category-227"><a href="http://www.artofmanliness.com/category/dress-grooming/style/" data-wpel-link="internal">Style</a></li>
546
+ <li class="crm-not-selected left-crm-item" data-id="category-225"><a href="http://www.artofmanliness.com/category/dress-grooming/accessories/" data-wpel-link="internal">Accessories</a></li>
547
+ <li class="crm-not-selected left-crm-item" data-id="category-223"><a href="http://www.artofmanliness.com/category/dress-grooming/shaving/" data-wpel-link="internal">Shaving</a></li>
548
+ <li><a style="color: #b5aa98;" href="http://www.artofmanliness.com/category/dress-grooming/" data-wpel-link="internal">Browse Dress &amp; Grooming</a></li>
549
+ </ul>
550
+ </div>
551
+ <div class="subcategory-drawer row-fluid">
552
+ <div class="category-227 first-drawer" data-id="category-227">
553
+ <article class="small-3 columns">
554
+ <header>
555
+ <a href="http://www.artofmanliness.com/2016/10/07/podcast-241-easy-ways-upgrade-style-aaron-marino/" data-wpel-link="internal">
556
+ <div class="navth thumb_container">
557
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/marino2-496x280.png">
558
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/marino2-496x280.png"></noscript>
559
+ </div>
560
+ <h2 class="post-title">Podcast #241: Easy Ways to Upgrade Your Style With Aaron Marino</h2>
561
+ </a>
562
+ </header>
563
+ <footer></footer>
564
+ </article>
565
+ <article class="small-3 columns">
566
+ <header>
567
+ <a href="http://www.artofmanliness.com/2016/09/07/outfitted-equipped-casual-fall-essentials/" data-wpel-link="internal">
568
+ <div class="navth thumb_container">
569
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/AOMBTRv4-2-538x280.jpg">
570
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/AOMBTRv4-2-538x280.jpg"></noscript>
571
+ </div>
572
+ <h2 class="post-title">Outfitted & Equipped: Casual Fall Essentials 2016</h2>
573
+ </a>
574
+ </header>
575
+ <footer></footer>
576
+ </article>
577
+ <article class="small-3 columns">
578
+ <header>
579
+ <a href="http://www.artofmanliness.com/2016/07/14/the-complete-guide-on-how-to-roll-up-your-shirt-sleeves/" data-wpel-link="internal">
580
+ <div class="navth thumb_container">
581
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/sleeves-393x280.png">
582
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/sleeves-393x280.png"></noscript>
583
+ </div>
584
+ <h2 class="post-title">The Complete Guide on How to Roll Up Your Shirt Sleeves</h2>
585
+ </a>
586
+ </header>
587
+ <footer></footer>
588
+ </article>
589
+ <article class="small-3 columns">
590
+ <header>
591
+ <a href="http://www.artofmanliness.com/2016/07/11/how-to-pack-for-a-one-week-business-trip/" data-wpel-link="internal">
592
+ <div class="navth thumb_container">
593
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/travel-suitcase-leave-home-448x280.jpg">
594
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/travel-suitcase-leave-home-448x280.jpg"></noscript>
595
+ </div>
596
+ <h2 class="post-title">How to Pack for a One-Week Business Trip</h2>
597
+ </a>
598
+ </header>
599
+ <footer></footer>
600
+ </article>
601
+ </div>
602
+ <div class="category-225" data-id="category-225">
603
+ <article class="small-3 columns">
604
+ <header>
605
+ <a href="http://www.artofmanliness.com/2016/10/05/mans-guide-wristwatches-choose-watch/" data-wpel-link="internal">
606
+ <div class="navth thumb_container">
607
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/Pilot-Aviator-2-538x280.jpg">
608
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/Pilot-Aviator-2-538x280.jpg"></noscript>
609
+ </div>
610
+ <h2 class="post-title">A Man's Guide to Wristwatches: How to Choose a Watch</h2>
611
+ </a>
612
+ </header>
613
+ <footer></footer>
614
+ </article>
615
+ <article class="small-3 columns">
616
+ <header>
617
+ <a href="http://www.artofmanliness.com/2016/09/28/mans-guide-wristwatches-history-wear-one/" data-wpel-link="internal">
618
+ <div class="navth thumb_container">
619
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Wristwatches-Header-1-e1475088059861-1-538x280.jpg">
620
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Wristwatches-Header-1-e1475088059861-1-538x280.jpg"></noscript>
621
+ </div>
622
+ <h2 class="post-title">A Man's Guide to Wristwatches: Their History and Why to Wear One</h2>
623
+ </a>
624
+ </header>
625
+ <footer></footer>
626
+ </article>
627
+ <article class="small-3 columns">
628
+ <header>
629
+ <a href="http://www.artofmanliness.com/2016/09/08/how-to-clean-a-baseball-cap/" data-wpel-link="internal">
630
+ <div class="navth thumb_container">
631
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/dirty-hats-538x280.jpg">
632
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/dirty-hats-538x280.jpg"></noscript>
633
+ </div>
634
+ <h2 class="post-title">How to Clean a Baseball Cap</h2>
635
+ </a>
636
+ </header>
637
+ <footer></footer>
638
+ </article>
639
+ <article class="small-3 columns">
640
+ <header>
641
+ <a href="http://www.artofmanliness.com/2016/05/10/how-to-put-a-dimple-in-your-tie/" data-wpel-link="internal">
642
+ <div class="navth thumb_container">
643
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/Dimple-in-Your-Tie-1-538x280.jpg">
644
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/Dimple-in-Your-Tie-1-538x280.jpg"></noscript>
645
+ </div>
646
+ <h2 class="post-title">How to Put a Dimple in Your Tie</h2>
647
+ </a>
648
+ </header>
649
+ <footer></footer>
650
+ </article>
651
+ </div>
652
+ <div class="category-223" data-id="category-223">
653
+ <article class="small-3 columns">
654
+ <header>
655
+ <a href="http://www.artofmanliness.com/2015/09/18/podcast-139-the-secrets-of-shaving/" data-wpel-link="internal">
656
+ <div class="navth thumb_container">
657
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/09/sharpologist-538x196.jpg">
658
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/09/sharpologist-538x196.jpg"></noscript>
659
+ </div>
660
+ <h2 class="post-title">Podcast #139: The Secrets of Shaving</h2>
661
+ </a>
662
+ </header>
663
+ <footer></footer>
664
+ </article>
665
+ <article class="small-3 columns">
666
+ <header>
667
+ <a href="http://www.artofmanliness.com/2015/02/28/how-to-trim-your-beard-video/" data-wpel-link="internal">
668
+ <div class="navth thumb_container">
669
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/02/maxresdefault4-538x280.jpg">
670
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/02/maxresdefault4-538x280.jpg"></noscript>
671
+ </div>
672
+ <h2 class="post-title">How to Trim Your Beard [VIDEO]</h2>
673
+ </a>
674
+ </header>
675
+ <footer></footer>
676
+ </article>
677
+ <article class="small-3 columns">
678
+ <header>
679
+ <a href="http://www.artofmanliness.com/2014/10/02/shaving-mistakes/" data-wpel-link="internal">
680
+ <div class="navth thumb_container">
681
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2014/10/shave31-479x280.png">
682
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2014/10/shave31-479x280.png"></noscript>
683
+ </div>
684
+ <h2 class="post-title">7 Mistakes New Wet Shavers Make</h2>
685
+ </a>
686
+ </header>
687
+ <footer></footer>
688
+ </article>
689
+ <article class="small-3 columns">
690
+ <header>
691
+ <a href="http://www.artofmanliness.com/2014/06/25/art-of-manliness-sacrilege-my-year-long-experiment-with-using-an-electric-razor/" data-wpel-link="internal">
692
+ <div class="navth thumb_container">
693
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2014/06/judge-538x280.jpg">
694
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2014/06/judge-538x280.jpg"></noscript>
695
+ </div>
696
+ <h2 class="post-title">Art of Manliness Sacrilege! My Year-Long Experiment With Using an Electric Razor</h2>
697
+ </a>
698
+ </header>
699
+ <footer></footer>
700
+ </article>
701
+ </div>
702
+ </div>
703
+ </div>
704
+ <div class="row-fluid category-7 masthead-dropdown has-sidebar hidden" data-id="category-7">
705
+ <div class="small-2 menu-background subcategory">
706
+ <ul>
707
+ <li class="selected left-crm-item" data-id="category-230"><a href="http://www.artofmanliness.com/category/health-sports/fitness/" data-wpel-link="internal">Fitness</a></li>
708
+ <li class="crm-not-selected left-crm-item" data-id="category-231"><a href="http://www.artofmanliness.com/category/health-sports/nutrition/" data-wpel-link="internal">Nutrition</a></li>
709
+ <li class="crm-not-selected left-crm-item" data-id="category-233"><a href="http://www.artofmanliness.com/category/health-sports/sports/" data-wpel-link="internal">Sports</a></li>
710
+ <li class="crm-not-selected left-crm-item" data-id="category-232"><a href="http://www.artofmanliness.com/category/health-sports/wellness/" data-wpel-link="internal">Wellness</a></li>
711
+ <li><a style="color: #b5aa98;" href="http://www.artofmanliness.com/category/health-sports/" data-wpel-link="internal">Browse Health &amp; Sports</a></li>
712
+ </ul>
713
+ </div>
714
+ <div class="subcategory-drawer row-fluid">
715
+ <div class="category-230 first-drawer" data-id="category-230">
716
+ <article class="small-3 columns">
717
+ <header>
718
+ <a href="http://www.artofmanliness.com/2016/10/20/podcast-245-workout-world-forgot/" data-wpel-link="internal">
719
+ <div class="navth thumb_container">
720
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/erwan-500x280.jpg">
721
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/erwan-500x280.jpg"></noscript>
722
+ </div>
723
+ <h2 class="post-title">Podcast #245: The Workout the World Forgot</h2>
724
+ </a>
725
+ </header>
726
+ <footer></footer>
727
+ </article>
728
+ <article class="small-3 columns">
729
+ <header>
730
+ <a href="http://www.artofmanliness.com/2016/10/12/rehab-muscle-strains-tears/" data-wpel-link="internal">
731
+ <div class="navth thumb_container">
732
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/benchrehab-e1476284156485-1-538x280.jpg">
733
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/benchrehab-e1476284156485-1-538x280.jpg"></noscript>
734
+ </div>
735
+ <h2 class="post-title">How to Rehab Muscle Strains and Tears</h2>
736
+ </a>
737
+ </header>
738
+ <footer></footer>
739
+ </article>
740
+ <article class="small-3 columns">
741
+ <header>
742
+ <a href="http://www.artofmanliness.com/2016/09/23/podcast-237-rise-sufferfests/" data-wpel-link="internal">
743
+ <div class="navth thumb_container">
744
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-13-at-10.26.44-AM-538x280.png">
745
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-13-at-10.26.44-AM-538x280.png"></noscript>
746
+ </div>
747
+ <h2 class="post-title">Podcast #237: Rise of the Sufferfests</h2>
748
+ </a>
749
+ </header>
750
+ <footer></footer>
751
+ </article>
752
+ <article class="small-3 columns">
753
+ <header>
754
+ <a href="http://www.artofmanliness.com/2016/09/15/how-to-build-a-weight-lifting-platform/" data-wpel-link="internal">
755
+ <div class="navth thumb_container">
756
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/finished-1-538x280.jpg">
757
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/finished-1-538x280.jpg"></noscript>
758
+ </div>
759
+ <h2 class="post-title">How to Build a Weightlifting Platform</h2>
760
+ </a>
761
+ </header>
762
+ <footer></footer>
763
+ </article>
764
+ </div>
765
+ <div class="category-231" data-id="category-231">
766
+ <article class="small-3 columns">
767
+ <header>
768
+ <a href="http://www.artofmanliness.com/2016/09/14/be-a-regular-guy-tips-for-improving-your-daily-constitutional/" data-wpel-link="internal">
769
+ <div class="navth thumb_container">
770
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/daily-412x280.png">
771
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/daily-412x280.png"></noscript>
772
+ </div>
773
+ <h2 class="post-title">Be a "Regular" Guy: Tips for Improving Your Daily Constitutional</h2>
774
+ </a>
775
+ </header>
776
+ <footer></footer>
777
+ </article>
778
+ <article class="small-3 columns">
779
+ <header>
780
+ <a href="http://www.artofmanliness.com/2016/09/09/podcast-233-diet-and-nutrition-advice-from-the-dr-of-gains/" data-wpel-link="internal">
781
+ <div class="navth thumb_container">
782
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/jordan_pull-538x280.png">
783
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/jordan_pull-538x280.png"></noscript>
784
+ </div>
785
+ <h2 class="post-title">Podcast #233: Diet and Nutrition Advice from the Doctor of Gains</h2>
786
+ </a>
787
+ </header>
788
+ <footer></footer>
789
+ </article>
790
+ <article class="small-3 columns">
791
+ <header>
792
+ <a href="http://www.artofmanliness.com/2016/06/30/how-to-stay-fit-and-maintain-your-gains-while-still-enjoying-your-vacation/" data-wpel-link="internal">
793
+ <div class="navth thumb_container">
794
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/pullup-538x280.jpg">
795
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/pullup-538x280.jpg"></noscript>
796
+ </div>
797
+ <h2 class="post-title">How to Stay Fit on Vacation (While Still Enjoying Yourself)</h2>
798
+ </a>
799
+ </header>
800
+ <footer></footer>
801
+ </article>
802
+ <article class="small-3 columns">
803
+ <header>
804
+ <a href="http://www.artofmanliness.com/2016/03/02/pre-and-post-workout-nutrition/" data-wpel-link="internal">
805
+ <div class="navth thumb_container">
806
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/03/nutrition-538x280.jpg">
807
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/03/nutrition-538x280.jpg"></noscript>
808
+ </div>
809
+ <h2 class="post-title">How to Finally Nail Your Pre- and Post-Workout Nutrition</h2>
810
+ </a>
811
+ </header>
812
+ <footer></footer>
813
+ </article>
814
+ </div>
815
+ <div class="category-233" data-id="category-233">
816
+ <article class="small-3 columns">
817
+ <header>
818
+ <a href="http://www.artofmanliness.com/2016/09/23/podcast-237-rise-sufferfests/" data-wpel-link="internal">
819
+ <div class="navth thumb_container">
820
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-13-at-10.26.44-AM-538x280.png">
821
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-13-at-10.26.44-AM-538x280.png"></noscript>
822
+ </div>
823
+ <h2 class="post-title">Podcast #237: Rise of the Sufferfests</h2>
824
+ </a>
825
+ </header>
826
+ <footer></footer>
827
+ </article>
828
+ <article class="small-3 columns">
829
+ <header>
830
+ <a href="http://www.artofmanliness.com/2016/08/09/creatine-faq/" data-wpel-link="internal">
831
+ <div class="navth thumb_container">
832
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/creatine-1-538x280.jpg">
833
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/creatine-1-538x280.jpg"></noscript>
834
+ </div>
835
+ <h2 class="post-title">Creatine: A Primer on Its Benefits and Use</h2>
836
+ </a>
837
+ </header>
838
+ <footer></footer>
839
+ </article>
840
+ <article class="small-3 columns">
841
+ <header>
842
+ <a href="http://www.artofmanliness.com/2016/07/19/the-herschel-walker-workout/" data-wpel-link="internal">
843
+ <div class="navth thumb_container">
844
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/Walker-Workout-Header-v3.1-538x280.jpg">
845
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/Walker-Workout-Header-v3.1-538x280.jpg"></noscript>
846
+ </div>
847
+ <h2 class="post-title">The Herschel Walker Workout</h2>
848
+ </a>
849
+ </header>
850
+ <footer></footer>
851
+ </article>
852
+ <article class="small-3 columns">
853
+ <header>
854
+ <a href="http://www.artofmanliness.com/2016/06/10/how-to-swim-the-front-crawl-stroke/" data-wpel-link="internal">
855
+ <div class="navth thumb_container">
856
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/Front-Crawl-Stroke-3-538x280.jpg">
857
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/Front-Crawl-Stroke-3-538x280.jpg"></noscript>
858
+ </div>
859
+ <h2 class="post-title">How to Swim the Front Crawl: Your 60-Second Guide</h2>
860
+ </a>
861
+ </header>
862
+ <footer></footer>
863
+ </article>
864
+ </div>
865
+ <div class="category-232" data-id="category-232">
866
+ <article class="small-3 columns">
867
+ <header>
868
+ <a href="http://www.artofmanliness.com/2016/10/12/rehab-muscle-strains-tears/" data-wpel-link="internal">
869
+ <div class="navth thumb_container">
870
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/benchrehab-e1476284156485-1-538x280.jpg">
871
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/benchrehab-e1476284156485-1-538x280.jpg"></noscript>
872
+ </div>
873
+ <h2 class="post-title">How to Rehab Muscle Strains and Tears</h2>
874
+ </a>
875
+ </header>
876
+ <footer></footer>
877
+ </article>
878
+ <article class="small-3 columns">
879
+ <header>
880
+ <a href="http://www.artofmanliness.com/2016/09/14/be-a-regular-guy-tips-for-improving-your-daily-constitutional/" data-wpel-link="internal">
881
+ <div class="navth thumb_container">
882
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/daily-412x280.png">
883
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/daily-412x280.png"></noscript>
884
+ </div>
885
+ <h2 class="post-title">Be a "Regular" Guy: Tips for Improving Your Daily Constitutional</h2>
886
+ </a>
887
+ </header>
888
+ <footer></footer>
889
+ </article>
890
+ <article class="small-3 columns">
891
+ <header>
892
+ <a href="http://www.artofmanliness.com/2016/06/28/podcast-213-undoing-the-damage-of-chronic-sitting/" data-wpel-link="internal">
893
+ <div class="navth thumb_container">
894
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/deskbound-9781628600582_hr-400x280.jpg">
895
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/deskbound-9781628600582_hr-400x280.jpg"></noscript>
896
+ </div>
897
+ <h2 class="post-title">Podcast #213: Undoing the Damage of Chronic Sitting</h2>
898
+ </a>
899
+ </header>
900
+ <footer></footer>
901
+ </article>
902
+ <article class="small-3 columns">
903
+ <header>
904
+ <a href="http://www.artofmanliness.com/2016/06/22/a-review-of-the-movnat-workshop/" data-wpel-link="internal">
905
+ <div class="navth thumb_container">
906
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/workshop-538x280.jpg">
907
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/workshop-538x280.jpg"></noscript>
908
+ </div>
909
+ <h2 class="post-title">A Review of the MovNat Workshop</h2>
910
+ </a>
911
+ </header>
912
+ <footer></footer>
913
+ </article>
914
+ </div>
915
+ </div>
916
+ </div>
917
+ <div class="row-fluid category-11 masthead-dropdown has-sidebar hidden" data-id="category-11">
918
+ <div class="small-2 menu-background subcategory">
919
+ <ul>
920
+ <li class="selected left-crm-item" data-id="category-337"><a href="http://www.artofmanliness.com/category/manly-skills/craft-of-strength/" data-wpel-link="internal">Craft of Strength</a></li>
921
+ <li class="crm-not-selected left-crm-item" data-id="category-278"><a href="http://www.artofmanliness.com/category/manly-skills/cars/" data-wpel-link="internal">Cars</a></li>
922
+ <li class="crm-not-selected left-crm-item" data-id="category-283"><a href="http://www.artofmanliness.com/category/manly-skills/just-for-fun/" data-wpel-link="internal">Just For Fun</a></li>
923
+ <li class="crm-not-selected left-crm-item" data-id="category-277"><a href="http://www.artofmanliness.com/category/manly-skills/outdoors/" data-wpel-link="internal">Outdoors</a></li>
924
+ <li class="crm-not-selected left-crm-item" data-id="category-275"><a href="http://www.artofmanliness.com/category/manly-skills/survival-manly-skills/" data-wpel-link="internal">Survival</a></li>
925
+ <li class="crm-not-selected left-crm-item" data-id="category-284"><a href="http://www.artofmanliness.com/category/manly-skills/tactical-skills/" data-wpel-link="internal">Tactical Skills</a></li>
926
+ <li><a style="color: #b5aa98;" href="http://www.artofmanliness.com/category/manly-skills/" data-wpel-link="internal">Browse Manly Skills</a></li>
927
+ </ul>
928
+ </div>
929
+ <div class="subcategory-drawer row-fluid">
930
+ <div class="category-337 first-drawer" data-id="category-337">
931
+ <article class="small-3 columns">
932
+ <header>
933
+ <a href="http://www.artofmanliness.com/2016/07/27/50-old-fashioned-insults-we-should-bring-back/" data-wpel-link="internal">
934
+ <div class="navth thumb_container">
935
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/Insults-Header-1-538x280.jpg">
936
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/Insults-Header-1-538x280.jpg"></noscript>
937
+ </div>
938
+ <h2 class="post-title">50+ Old Fashioned Insults We Should Bring Back</h2>
939
+ </a>
940
+ </header>
941
+ <footer></footer>
942
+ </article>
943
+ <article class="small-3 columns">
944
+ <header>
945
+ <a href="http://www.artofmanliness.com/2016/06/29/strength-contests-from-the-wwii-era/" data-wpel-link="internal">
946
+ <div class="navth thumb_container">
947
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/Strength-Contest-Header-538x280.jpg">
948
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/Strength-Contest-Header-538x280.jpg"></noscript>
949
+ </div>
950
+ <h2 class="post-title">32 Strength Contests from the WWII Era</h2>
951
+ </a>
952
+ </header>
953
+ <footer></footer>
954
+ </article>
955
+ <article class="small-3 columns">
956
+ <header>
957
+ <a href="http://www.artofmanliness.com/2016/05/23/outfitted-equipped-panning-for-gold/" data-wpel-link="internal">
958
+ <div class="navth thumb_container">
959
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/SF-Gold_v6-538x280.jpg">
960
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/SF-Gold_v6-538x280.jpg"></noscript>
961
+ </div>
962
+ <h2 class="post-title">Outfitted & Equipped: Panning for Gold</h2>
963
+ </a>
964
+ </header>
965
+ <footer></footer>
966
+ </article>
967
+ <article class="small-3 columns">
968
+ <header>
969
+ <a href="http://www.artofmanliness.com/2016/04/06/oldtime-strongman-exercises/" data-wpel-link="internal">
970
+ <div class="navth thumb_container">
971
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/04/Strongman-Header-v2-538x280.jpg">
972
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/04/Strongman-Header-v2-538x280.jpg"></noscript>
973
+ </div>
974
+ <h2 class="post-title">The Ultimate Guide to Oldtime Strongman Fitness: 26 Forgotten Exercises Every Man Should Try</h2>
975
+ </a>
976
+ </header>
977
+ <footer></footer>
978
+ </article>
979
+ </div>
980
+ <div class="category-278" data-id="category-278">
981
+ <article class="small-3 columns">
982
+ <header>
983
+ <a href="http://www.artofmanliness.com/2016/09/30/gearhead-101-full-time-4wd-wheel-drive-work/" data-wpel-link="internal">
984
+ <div class="navth thumb_container">
985
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Full-4WD-Header-2-e1475248096182-1-538x280.jpg">
986
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Full-4WD-Header-2-e1475248096182-1-538x280.jpg"></noscript>
987
+ </div>
988
+ <h2 class="post-title">Gearhead 101: How Full-Time 4WD and All-Wheel Drive Work</h2>
989
+ </a>
990
+ </header>
991
+ <footer></footer>
992
+ </article>
993
+ <article class="small-3 columns">
994
+ <header>
995
+ <a href="http://www.artofmanliness.com/2016/09/06/gearhead-101-how-part-time-four-wheel-drive-works/" data-wpel-link="internal">
996
+ <div class="navth thumb_container">
997
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/PT4WD-Header-2-538x280.jpg">
998
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/PT4WD-Header-2-538x280.jpg"></noscript>
999
+ </div>
1000
+ <h2 class="post-title">Gearhead 101: How Part-Time Four-Wheel Drive Works</h2>
1001
+ </a>
1002
+ </header>
1003
+ <footer></footer>
1004
+ </article>
1005
+ <article class="small-3 columns">
1006
+ <header>
1007
+ <a href="http://www.artofmanliness.com/2016/05/17/how-to-tie-a-load-to-the-top-of-your-car/" data-wpel-link="internal">
1008
+ <div class="navth thumb_container">
1009
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/Tie-Onto-Car-1-538x280.jpg">
1010
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/Tie-Onto-Car-1-538x280.jpg"></noscript>
1011
+ </div>
1012
+ <h2 class="post-title">How to Tie a Load to the Top of Your Car</h2>
1013
+ </a>
1014
+ </header>
1015
+ <footer></footer>
1016
+ </article>
1017
+ <article class="small-3 columns">
1018
+ <header>
1019
+ <a href="http://www.artofmanliness.com/2016/05/03/how-to-remove-bumper-stickers-and-car-decals/" data-wpel-link="internal">
1020
+ <div class="navth thumb_container">
1021
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/Remove-Car-Decals-1-538x280.jpg">
1022
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/Remove-Car-Decals-1-538x280.jpg"></noscript>
1023
+ </div>
1024
+ <h2 class="post-title">How to Remove Bumper Stickers and Car Decals</h2>
1025
+ </a>
1026
+ </header>
1027
+ <footer></footer>
1028
+ </article>
1029
+ </div>
1030
+ <div class="category-283" data-id="category-283">
1031
+ <article class="small-3 columns">
1032
+ <header>
1033
+ <a href="http://www.artofmanliness.com/2016/04/26/cool-uncle-tricks-how-to-pull-a-coin-from-someones-ear/" data-wpel-link="internal">
1034
+ <div class="navth thumb_container">
1035
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/04/Coin-from-Ear-2-538x280.jpg">
1036
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/04/Coin-from-Ear-2-538x280.jpg"></noscript>
1037
+ </div>
1038
+ <h2 class="post-title">Cool Uncle Tricks: How to Pull a Coin from Someone's Ear</h2>
1039
+ </a>
1040
+ </header>
1041
+ <footer></footer>
1042
+ </article>
1043
+ <article class="small-3 columns">
1044
+ <header>
1045
+ <a href="http://www.artofmanliness.com/2016/04/08/how-to-catch-a-souvenir-baseball/" data-wpel-link="internal">
1046
+ <div class="navth thumb_container">
1047
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/04/Catch-Souvenir-Baseball-2-538x280.jpg">
1048
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/04/Catch-Souvenir-Baseball-2-538x280.jpg"></noscript>
1049
+ </div>
1050
+ <h2 class="post-title">How to Catch a Souvenir Baseball</h2>
1051
+ </a>
1052
+ </header>
1053
+ <footer></footer>
1054
+ </article>
1055
+ <article class="small-3 columns">
1056
+ <header>
1057
+ <a href="http://www.artofmanliness.com/2015/10/27/how-to-draw-teddy-roosevelt/" data-wpel-link="internal">
1058
+ <div class="navth thumb_container">
1059
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/10/Draw-TR-2-538x280.jpg">
1060
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/10/Draw-TR-2-538x280.jpg"></noscript>
1061
+ </div>
1062
+ <h2 class="post-title">How to Draw Teddy Roosevelt</h2>
1063
+ </a>
1064
+ </header>
1065
+ <footer></footer>
1066
+ </article>
1067
+ <article class="small-3 columns">
1068
+ <header>
1069
+ <a href="http://www.artofmanliness.com/2015/10/22/6-manly-pumpkin-stencils/" data-wpel-link="internal">
1070
+ <div class="navth thumb_container">
1071
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/10/pump-538x280.png">
1072
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/10/pump-538x280.png"></noscript>
1073
+ </div>
1074
+ <h2 class="post-title">Upgrade Your Pumpkin Carving With 6 Manly Pumpkin Stencils</h2>
1075
+ </a>
1076
+ </header>
1077
+ <footer></footer>
1078
+ </article>
1079
+ </div>
1080
+ <div class="category-277" data-id="category-277">
1081
+ <article class="small-3 columns">
1082
+ <header>
1083
+ <a href="http://www.artofmanliness.com/2016/10/07/treat-bee-sting/" data-wpel-link="internal">
1084
+ <div class="navth thumb_container">
1085
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/Bee-Sting-1-538x280.jpg">
1086
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/Bee-Sting-1-538x280.jpg"></noscript>
1087
+ </div>
1088
+ <h2 class="post-title">How to Treat a Bee Sting</h2>
1089
+ </a>
1090
+ </header>
1091
+ <footer></footer>
1092
+ </article>
1093
+ <article class="small-3 columns">
1094
+ <header>
1095
+ <a href="http://www.artofmanliness.com/2016/10/06/filter-purify-water-traveling-camping-survival/" data-wpel-link="internal">
1096
+ <div class="navth thumb_container">
1097
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/Purify-Water-Header-2-e1475771985119-1-538x280.jpg">
1098
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/Purify-Water-Header-2-e1475771985119-1-538x280.jpg"></noscript>
1099
+ </div>
1100
+ <h2 class="post-title">How to Filter and Purify Water for Traveling, Camping, and Survival</h2>
1101
+ </a>
1102
+ </header>
1103
+ <footer></footer>
1104
+ </article>
1105
+ <article class="small-3 columns">
1106
+ <header>
1107
+ <a href="http://www.artofmanliness.com/2016/08/18/how-to-remove-a-leech/" data-wpel-link="internal">
1108
+ <div class="navth thumb_container">
1109
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/Remove-a-Leech-2-538x280.jpg">
1110
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/Remove-a-Leech-2-538x280.jpg"></noscript>
1111
+ </div>
1112
+ <h2 class="post-title">How to Remove a Leech</h2>
1113
+ </a>
1114
+ </header>
1115
+ <footer></footer>
1116
+ </article>
1117
+ <article class="small-3 columns">
1118
+ <header>
1119
+ <a href="http://www.artofmanliness.com/2016/07/26/land-navigation-manual-how-to-use-the-military-grid-reference-system/" data-wpel-link="internal">
1120
+ <div class="navth thumb_container">
1121
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/map-538x280.png">
1122
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/map-538x280.png"></noscript>
1123
+ </div>
1124
+ <h2 class="post-title">Land Navigation Manual: How to Use the Military Grid Reference System</h2>
1125
+ </a>
1126
+ </header>
1127
+ <footer></footer>
1128
+ </article>
1129
+ </div>
1130
+ <div class="category-275" data-id="category-275">
1131
+ <article class="small-3 columns">
1132
+ <header>
1133
+ <a href="http://www.artofmanliness.com/2016/10/13/how-to-track-a-human/" data-wpel-link="internal">
1134
+ <div class="navth thumb_container">
1135
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/Human-Tracking-Header-1-e1476394591925-1-538x280.jpg">
1136
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/Human-Tracking-Header-1-e1476394591925-1-538x280.jpg"></noscript>
1137
+ </div>
1138
+ <h2 class="post-title">How to Track a Human</h2>
1139
+ </a>
1140
+ </header>
1141
+ <footer></footer>
1142
+ </article>
1143
+ <article class="small-3 columns">
1144
+ <header>
1145
+ <a href="http://www.artofmanliness.com/2016/10/06/filter-purify-water-traveling-camping-survival/" data-wpel-link="internal">
1146
+ <div class="navth thumb_container">
1147
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/Purify-Water-Header-2-e1475771985119-1-538x280.jpg">
1148
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/Purify-Water-Header-2-e1475771985119-1-538x280.jpg"></noscript>
1149
+ </div>
1150
+ <h2 class="post-title">How to Filter and Purify Water for Traveling, Camping, and Survival</h2>
1151
+ </a>
1152
+ </header>
1153
+ <footer></footer>
1154
+ </article>
1155
+ <article class="small-3 columns">
1156
+ <header>
1157
+ <a href="http://www.artofmanliness.com/2016/09/21/make-use-tourniquet/" data-wpel-link="internal">
1158
+ <div class="navth thumb_container">
1159
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Tourniquet-1-538x280.jpg">
1160
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Tourniquet-1-538x280.jpg"></noscript>
1161
+ </div>
1162
+ <h2 class="post-title">How to Make & Use a Tourniquet: An Illustrated Guide</h2>
1163
+ </a>
1164
+ </header>
1165
+ <footer></footer>
1166
+ </article>
1167
+ <article class="small-3 columns">
1168
+ <header>
1169
+ <a href="http://www.artofmanliness.com/2016/09/14/how-to-board-up-your-house-before-a-hurricane/" data-wpel-link="internal">
1170
+ <div class="navth thumb_container">
1171
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Board-Up-House-2-538x280.jpg">
1172
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Board-Up-House-2-538x280.jpg"></noscript>
1173
+ </div>
1174
+ <h2 class="post-title">How to Board Up Your House Before a Hurricane</h2>
1175
+ </a>
1176
+ </header>
1177
+ <footer></footer>
1178
+ </article>
1179
+ </div>
1180
+ <div class="category-284" data-id="category-284">
1181
+ <article class="small-3 columns">
1182
+ <header>
1183
+ <a href="http://www.artofmanliness.com/2016/10/21/spot-concealed-handgun/" data-wpel-link="internal">
1184
+ <div class="navth thumb_container">
1185
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/100-Deadly-Survival_final-e1476905452889-1-538x280.jpg">
1186
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/100-Deadly-Survival_final-e1476905452889-1-538x280.jpg"></noscript>
1187
+ </div>
1188
+ <h2 class="post-title">How to Spot a Concealed Handgun</h2>
1189
+ </a>
1190
+ </header>
1191
+ <footer></footer>
1192
+ </article>
1193
+ <article class="small-3 columns">
1194
+ <header>
1195
+ <a href="http://www.artofmanliness.com/2016/10/13/how-to-track-a-human/" data-wpel-link="internal">
1196
+ <div class="navth thumb_container">
1197
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/Human-Tracking-Header-1-e1476394591925-1-538x280.jpg">
1198
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/Human-Tracking-Header-1-e1476394591925-1-538x280.jpg"></noscript>
1199
+ </div>
1200
+ <h2 class="post-title">How to Track a Human</h2>
1201
+ </a>
1202
+ </header>
1203
+ <footer></footer>
1204
+ </article>
1205
+ <article class="small-3 columns">
1206
+ <header>
1207
+ <a href="http://www.artofmanliness.com/2016/08/30/podcast-230-how-to-deal-with-aggressive-people/" data-wpel-link="internal">
1208
+ <div class="navth thumb_container">
1209
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.00.08-AM.png">
1210
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.00.08-AM.png"></noscript>
1211
+ </div>
1212
+ <h2 class="post-title">Podcast #230: How to Deal With Aggressive People</h2>
1213
+ </a>
1214
+ </header>
1215
+ <footer></footer>
1216
+ </article>
1217
+ <article class="small-3 columns">
1218
+ <header>
1219
+ <a href="http://www.artofmanliness.com/2016/08/16/how-to-treat-your-family-like-vips/" data-wpel-link="internal">
1220
+ <div class="navth thumb_container">
1221
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/VIP-Header-3-538x280.jpg">
1222
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/VIP-Header-3-538x280.jpg"></noscript>
1223
+ </div>
1224
+ <h2 class="post-title">How to Treat Your Family Like VIPs</h2>
1225
+ </a>
1226
+ </header>
1227
+ <footer></footer>
1228
+ </article>
1229
+ </div>
1230
+ </div>
1231
+ </div>
1232
+ <div class="row-fluid category-12 masthead-dropdown has-sidebar hidden" data-id="category-12">
1233
+ <div class="small-2 menu-background subcategory">
1234
+ <ul>
1235
+ <li class="selected left-crm-item" data-id="category-299"><a href="http://www.artofmanliness.com/category/money-career/personal-finance/" data-wpel-link="internal">Personal Finance</a></li>
1236
+ <li class="crm-not-selected left-crm-item" data-id="category-301"><a href="http://www.artofmanliness.com/category/money-career/college/" data-wpel-link="internal">College</a></li>
1237
+ <li class="crm-not-selected left-crm-item" data-id="category-302"><a href="http://www.artofmanliness.com/category/money-career/entrepreneurship/" data-wpel-link="internal">Entrepreneurship</a></li>
1238
+ <li class="crm-not-selected left-crm-item" data-id="category-300"><a href="http://www.artofmanliness.com/category/money-career/networking/" data-wpel-link="internal">Networking</a></li>
1239
+ <li class="crm-not-selected left-crm-item" data-id="category-303"><a href="http://www.artofmanliness.com/category/money-career/professional-skills/" data-wpel-link="internal">Professional Skills</a></li>
1240
+ <li class="crm-not-selected left-crm-item" data-id="category-75"><a href="http://www.artofmanliness.com/category/money-career/so-you-want-my-job/" data-wpel-link="internal">So You Want My Job</a></li>
1241
+ <li><a style="color: #b5aa98;" href="http://www.artofmanliness.com/category/money-career/" data-wpel-link="internal">Browse Money &amp; Career</a></li>
1242
+ </ul>
1243
+ </div>
1244
+ <div class="subcategory-drawer row-fluid">
1245
+ <div class="category-299 first-drawer" data-id="category-299">
1246
+ <article class="small-3 columns">
1247
+ <header>
1248
+ <a href="http://www.artofmanliness.com/2016/09/06/podcast-232-become-the-chief-financial-officer-of-family-inc/" data-wpel-link="internal">
1249
+ <div class="navth thumb_container">
1250
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.10.25-AM-538x280.png">
1251
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.10.25-AM-538x280.png"></noscript>
1252
+ </div>
1253
+ <h2 class="post-title">Podcast #232: Become the Chief Financial Officer of Family Inc.</h2>
1254
+ </a>
1255
+ </header>
1256
+ <footer></footer>
1257
+ </article>
1258
+ <article class="small-3 columns">
1259
+ <header>
1260
+ <a href="http://www.artofmanliness.com/2016/08/02/podcast-222-the-laws-of-wealth/" data-wpel-link="internal">
1261
+ <div class="navth thumb_container">
1262
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/41IQ26lGVqL-1.jpg">
1263
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/41IQ26lGVqL-1.jpg"></noscript>
1264
+ </div>
1265
+ <h2 class="post-title">Podcast #222: The Laws of Wealth</h2>
1266
+ </a>
1267
+ </header>
1268
+ <footer></footer>
1269
+ </article>
1270
+ <article class="small-3 columns">
1271
+ <header>
1272
+ <a href="http://www.artofmanliness.com/2016/04/01/podcast-188-the-opposite-of-spoiled-raising-kids-who-are-grounded-generous-and-smart-about-money/" data-wpel-link="internal">
1273
+ <div class="navth thumb_container">
1274
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/03/Screen-Shot-2016-03-30-at-8.29.45-AM-1-538x280.png">
1275
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/03/Screen-Shot-2016-03-30-at-8.29.45-AM-1-538x280.png"></noscript>
1276
+ </div>
1277
+ <h2 class="post-title">Podcast #188: The Opposite of Spoiled: Raising Kids Who Are Grounded, Generous and Smart About Money</h2>
1278
+ </a>
1279
+ </header>
1280
+ <footer></footer>
1281
+ </article>
1282
+ <article class="small-3 columns">
1283
+ <header>
1284
+ <a href="http://www.artofmanliness.com/2015/12/22/podcast-165-better-conversations-on-money-and-marriage/" data-wpel-link="internal">
1285
+ <div class="navth thumb_container">
1286
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/12/one-bed-e1450790897478-1-313x280.jpg">
1287
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/12/one-bed-e1450790897478-1-313x280.jpg"></noscript>
1288
+ </div>
1289
+ <h2 class="post-title">Podcast #165: Better Conversations on Money and Marriage</h2>
1290
+ </a>
1291
+ </header>
1292
+ <footer></footer>
1293
+ </article>
1294
+ </div>
1295
+ <div class="category-301" data-id="category-301">
1296
+ <article class="small-3 columns">
1297
+ <header>
1298
+ <a href="http://www.artofmanliness.com/2015/09/11/how-to-write-the-perfect-college-application-essay/" data-wpel-link="internal">
1299
+ <div class="navth thumb_container">
1300
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/09/write-538x280.jpg">
1301
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/09/write-538x280.jpg"></noscript>
1302
+ </div>
1303
+ <h2 class="post-title">How to Write the Perfect College Application Essay</h2>
1304
+ </a>
1305
+ </header>
1306
+ <footer></footer>
1307
+ </article>
1308
+ <article class="small-3 columns">
1309
+ <header>
1310
+ <a href="http://www.artofmanliness.com/2015/08/06/a-guide-to-paying-back-your-student-loans/" data-wpel-link="internal">
1311
+ <div class="navth thumb_container">
1312
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/08/loans-538x280.png">
1313
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/08/loans-538x280.png"></noscript>
1314
+ </div>
1315
+ <h2 class="post-title">A Guide to Paying Back Your Student Loans</h2>
1316
+ </a>
1317
+ </header>
1318
+ <footer></footer>
1319
+ </article>
1320
+ <article class="small-3 columns">
1321
+ <header>
1322
+ <a href="http://www.artofmanliness.com/2015/08/04/student-loans/" data-wpel-link="internal">
1323
+ <div class="navth thumb_container">
1324
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/08/stud-465x280.png">
1325
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/08/stud-465x280.png"></noscript>
1326
+ </div>
1327
+ <h2 class="post-title">What Every Young Man Should Know About Student Loans</h2>
1328
+ </a>
1329
+ </header>
1330
+ <footer></footer>
1331
+ </article>
1332
+ <article class="small-3 columns">
1333
+ <header>
1334
+ <a href="http://www.artofmanliness.com/2015/02/04/networking-tips-for-college-success-how-to-build-relationships-and-land-a-great-job-after-college/" data-wpel-link="internal">
1335
+ <div class="navth thumb_container">
1336
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/02/lunch-538x280.png">
1337
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/02/lunch-538x280.png"></noscript>
1338
+ </div>
1339
+ <h2 class="post-title">Networking Tips for College Success: How to Build Relationships and Land a Great Job After College</h2>
1340
+ </a>
1341
+ </header>
1342
+ <footer></footer>
1343
+ </article>
1344
+ </div>
1345
+ <div class="category-302" data-id="category-302">
1346
+ <article class="small-3 columns">
1347
+ <header>
1348
+ <a href="http://www.artofmanliness.com/2016/02/07/podcast-175-how-to-improve-your-work-and-life-with-systems/" data-wpel-link="internal">
1349
+ <div class="navth thumb_container">
1350
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/02/work-the-system-e1454712987426-1-362x280.jpg">
1351
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/02/work-the-system-e1454712987426-1-362x280.jpg"></noscript>
1352
+ </div>
1353
+ <h2 class="post-title">Podcast #175: How to Improve Your Work and Life With Systems</h2>
1354
+ </a>
1355
+ </header>
1356
+ <footer></footer>
1357
+ </article>
1358
+ <article class="small-3 columns">
1359
+ <header>
1360
+ <a href="http://www.artofmanliness.com/2014/09/06/art-of-manliness-podcast-80-starting-huckberry-with-andy-forch-richard-greiner/" data-wpel-link="internal">
1361
+ <div class="navth thumb_container">
1362
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2014/09/Greiner_and_Forch-538x280.jpg">
1363
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2014/09/Greiner_and_Forch-538x280.jpg"></noscript>
1364
+ </div>
1365
+ <h2 class="post-title">Art of Manliness Podcast #80: Starting Huckberry With Andy Forch & Richard Greiner</h2>
1366
+ </a>
1367
+ </header>
1368
+ <footer></footer>
1369
+ </article>
1370
+ <article class="small-3 columns">
1371
+ <header>
1372
+ <a href="http://www.artofmanliness.com/2014/02/04/9-lessons-in-entrepreneurship-from-shark-tank/" data-wpel-link="internal">
1373
+ <div class="navth thumb_container">
1374
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2014/02/tank-538x280.jpg">
1375
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2014/02/tank-538x280.jpg"></noscript>
1376
+ </div>
1377
+ <h2 class="post-title">9 Lessons in Entrepreneurship From Shark Tank</h2>
1378
+ </a>
1379
+ </header>
1380
+ <footer></footer>
1381
+ </article>
1382
+ <article class="small-3 columns">
1383
+ <header>
1384
+ <a href="http://www.artofmanliness.com/2013/10/24/want-to-start-a-business-consider-these-5-invaluable-lessons-before-diving-in/" data-wpel-link="internal">
1385
+ <div class="navth thumb_container">
1386
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2013/10/young-businessmen-500x280.jpg">
1387
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2013/10/young-businessmen-500x280.jpg"></noscript>
1388
+ </div>
1389
+ <h2 class="post-title">Want to Start a Business? Consider These 5 Invaluable Lessons Before Diving In</h2>
1390
+ </a>
1391
+ </header>
1392
+ <footer></footer>
1393
+ </article>
1394
+ </div>
1395
+ <div class="category-300" data-id="category-300">
1396
+ <article class="small-3 columns">
1397
+ <header>
1398
+ <a href="http://www.artofmanliness.com/2016/05/17/making-introductions-the-faqs/" data-wpel-link="internal">
1399
+ <div class="navth thumb_container">
1400
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/intro-538x280.png">
1401
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/intro-538x280.png"></noscript>
1402
+ </div>
1403
+ <h2 class="post-title">Making Introductions: The FAQs</h2>
1404
+ </a>
1405
+ </header>
1406
+ <footer></footer>
1407
+ </article>
1408
+ <article class="small-3 columns">
1409
+ <header>
1410
+ <a href="http://www.artofmanliness.com/2015/03/26/how-to-contact-a-busy-person/" data-wpel-link="internal">
1411
+ <div class="navth thumb_container">
1412
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/03/busyman-538x280.jpg">
1413
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/03/busyman-538x280.jpg"></noscript>
1414
+ </div>
1415
+ <h2 class="post-title">How to Contact a Busy Person</h2>
1416
+ </a>
1417
+ </header>
1418
+ <footer></footer>
1419
+ </article>
1420
+ <article class="small-3 columns">
1421
+ <header>
1422
+ <a href="http://www.artofmanliness.com/2015/02/04/networking-tips-for-college-success-how-to-build-relationships-and-land-a-great-job-after-college/" data-wpel-link="internal">
1423
+ <div class="navth thumb_container">
1424
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/02/lunch-538x280.png">
1425
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/02/lunch-538x280.png"></noscript>
1426
+ </div>
1427
+ <h2 class="post-title">Networking Tips for College Success: How to Build Relationships and Land a Great Job After College</h2>
1428
+ </a>
1429
+ </header>
1430
+ <footer></footer>
1431
+ </article>
1432
+ <article class="small-3 columns">
1433
+ <header>
1434
+ <a href="http://www.artofmanliness.com/2015/01/19/how-to-talk-about-your-unconventional-background-in-a-conventional-world/" data-wpel-link="internal">
1435
+ <div class="navth thumb_container">
1436
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/01/interview2-538x280.jpg">
1437
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/01/interview2-538x280.jpg"></noscript>
1438
+ </div>
1439
+ <h2 class="post-title">How to Talk About Your Unconventional Background in a Conventional World</h2>
1440
+ </a>
1441
+ </header>
1442
+ <footer></footer>
1443
+ </article>
1444
+ </div>
1445
+ <div class="category-303" data-id="category-303">
1446
+ <article class="small-3 columns">
1447
+ <header>
1448
+ <a href="http://www.artofmanliness.com/2016/09/13/an-introduction-to-public-speaking/" data-wpel-link="internal">
1449
+ <div class="navth thumb_container">
1450
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/speech-538x280.jpg">
1451
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/speech-538x280.jpg"></noscript>
1452
+ </div>
1453
+ <h2 class="post-title">An Introduction to Public Speaking</h2>
1454
+ </a>
1455
+ </header>
1456
+ <footer></footer>
1457
+ </article>
1458
+ <article class="small-3 columns">
1459
+ <header>
1460
+ <a href="http://www.artofmanliness.com/2016/09/13/podcast-234-haggling-and-deal-making-advice-from-a-fbi-hostage-negotiator/" data-wpel-link="internal">
1461
+ <div class="navth thumb_container">
1462
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-13-at-8.41.15-PM-538x280.png">
1463
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-13-at-8.41.15-PM-538x280.png"></noscript>
1464
+ </div>
1465
+ <h2 class="post-title">Podcast #234: Haggling and Deal Making Advice From a FBI Hostage Negotiator</h2>
1466
+ </a>
1467
+ </header>
1468
+ <footer></footer>
1469
+ </article>
1470
+ <article class="small-3 columns">
1471
+ <header>
1472
+ <a href="http://www.artofmanliness.com/2016/06/20/podcast-211-ask-frances-difficult-conversations-small-talk-and-charisma/" data-wpel-link="internal">
1473
+ <div class="navth thumb_container">
1474
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/how-to-wow-324x280.jpg">
1475
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/how-to-wow-324x280.jpg"></noscript>
1476
+ </div>
1477
+ <h2 class="post-title">Podcast #211: Difficult Conversations, Small Talk, and Charisma</h2>
1478
+ </a>
1479
+ </header>
1480
+ <footer></footer>
1481
+ </article>
1482
+ <article class="small-3 columns">
1483
+ <header>
1484
+ <a href="http://www.artofmanliness.com/2016/04/27/podcast-196-the-science-of-self-motivation-productivity/" data-wpel-link="internal">
1485
+ <div class="navth thumb_container">
1486
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/04/duhigg-1.jpeg">
1487
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/04/duhigg-1.jpeg"></noscript>
1488
+ </div>
1489
+ <h2 class="post-title">Podcast #196: The Science of Self-Motivation & Productivity</h2>
1490
+ </a>
1491
+ </header>
1492
+ <footer></footer>
1493
+ </article>
1494
+ </div>
1495
+ <div class="category-75" data-id="category-75">
1496
+ <article class="small-3 columns">
1497
+ <header>
1498
+ <a href="http://www.artofmanliness.com/2016/08/11/so-you-want-my-job-stay-at-home-dad/" data-wpel-link="internal">
1499
+ <div class="navth thumb_container">
1500
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/P1040965-538x280.jpg">
1501
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/P1040965-538x280.jpg"></noscript>
1502
+ </div>
1503
+ <h2 class="post-title">So You Want My Job: Stay-at-Home Dad</h2>
1504
+ </a>
1505
+ </header>
1506
+ <footer></footer>
1507
+ </article>
1508
+ <article class="small-3 columns">
1509
+ <header>
1510
+ <a href="http://www.artofmanliness.com/2016/05/27/so-you-want-my-trade-concrete-mason/" data-wpel-link="internal">
1511
+ <div class="navth thumb_container">
1512
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/IMG_2136-375x280.jpg">
1513
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/IMG_2136-375x280.jpg"></noscript>
1514
+ </div>
1515
+ <h2 class="post-title">So You Want My Trade: Concrete Mason</h2>
1516
+ </a>
1517
+ </header>
1518
+ <footer></footer>
1519
+ </article>
1520
+ <article class="small-3 columns">
1521
+ <header>
1522
+ <a href="http://www.artofmanliness.com/2015/12/05/so-you-want-my-trade-elevator-mechanic/" data-wpel-link="internal">
1523
+ <div class="navth thumb_container">
1524
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/12/elevator.png">
1525
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/12/elevator.png"></noscript>
1526
+ </div>
1527
+ <h2 class="post-title">So You Want My Trade: Elevator Mechanic</h2>
1528
+ </a>
1529
+ </header>
1530
+ <footer></footer>
1531
+ </article>
1532
+ <article class="small-3 columns">
1533
+ <header>
1534
+ <a href="http://www.artofmanliness.com/2015/10/29/so-you-want-my-trade-automotive-mechanictechnician/" data-wpel-link="internal">
1535
+ <div class="navth thumb_container">
1536
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2015/10/mech-334x280.png">
1537
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2015/10/mech-334x280.png"></noscript>
1538
+ </div>
1539
+ <h2 class="post-title">So You Want My Trade: Automotive Mechanic/Technician</h2>
1540
+ </a>
1541
+ </header>
1542
+ <footer></footer>
1543
+ </article>
1544
+ </div>
1545
+ </div>
1546
+ </div>
1547
+ <div class="row-fluid category-65 masthead-dropdown has-sidebar hidden" data-id="category-65">
1548
+ <div class="small-2 menu-background subcategory">
1549
+ <ul>
1550
+ <li class="selected left-crm-item" data-id="category-254"><a href="http://www.artofmanliness.com/category/relationships-family/dating-relationships-family/" data-wpel-link="internal">Dating</a></li>
1551
+ <li class="crm-not-selected left-crm-item" data-id="category-253"><a href="http://www.artofmanliness.com/category/relationships-family/fatherhood/" data-wpel-link="internal">Fatherhood</a></li>
1552
+ <li class="crm-not-selected left-crm-item" data-id="category-256"><a href="http://www.artofmanliness.com/category/relationships-family/friendship/" data-wpel-link="internal">Friendship</a></li>
1553
+ <li class="crm-not-selected left-crm-item" data-id="category-255"><a href="http://www.artofmanliness.com/category/relationships-family/marriage/" data-wpel-link="internal">Marriage</a></li>
1554
+ <li class="crm-not-selected left-crm-item" data-id="category-317"><a href="http://www.artofmanliness.com/category/relationships-family/social-skills/" data-wpel-link="internal">Social Skills</a></li>
1555
+ <li><a style="color: #b5aa98;" href="http://www.artofmanliness.com/category/relationships-family/" data-wpel-link="internal">Browse Relationships &amp; Family</a></li>
1556
+ </ul>
1557
+ </div>
1558
+ <div class="subcategory-drawer row-fluid">
1559
+ <div class="category-254 first-drawer" data-id="category-254">
1560
+ <article class="small-3 columns">
1561
+ <header>
1562
+ <a href="http://www.artofmanliness.com/2016/10/16/secrets-healthy-sex-life-advice-legendary-bodybuilder-joe-weider/" data-wpel-link="internal">
1563
+ <div class="navth thumb_container">
1564
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/weiderfeat-435x280.png">
1565
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/weiderfeat-435x280.png"></noscript>
1566
+ </div>
1567
+ <h2 class="post-title">Legendary Bodybuilder Joe Weider's Secrets to a Healthy Sex Life</h2>
1568
+ </a>
1569
+ </header>
1570
+ <footer></footer>
1571
+ </article>
1572
+ <article class="small-3 columns">
1573
+ <header>
1574
+ <a href="http://www.artofmanliness.com/2016/09/29/podcast-239-saving-marriage-starts/" data-wpel-link="internal">
1575
+ <div class="navth thumb_container">
1576
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-21-at-12.25.20-PM-538x280.png">
1577
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-21-at-12.25.20-PM-538x280.png"></noscript>
1578
+ </div>
1579
+ <h2 class="post-title">Podcast #239: Saving Your Marriage Before It Starts</h2>
1580
+ </a>
1581
+ </header>
1582
+ <footer></footer>
1583
+ </article>
1584
+ <article class="small-3 columns">
1585
+ <header>
1586
+ <a href="http://www.artofmanliness.com/2016/08/05/6-tips-for-successful-gentlemanly-online-dating/" data-wpel-link="internal">
1587
+ <div class="navth thumb_container">
1588
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/onlinedating-538x280.png">
1589
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/onlinedating-538x280.png"></noscript>
1590
+ </div>
1591
+ <h2 class="post-title">6 Tips for Successful & Gentlemanly Online Dating</h2>
1592
+ </a>
1593
+ </header>
1594
+ <footer></footer>
1595
+ </article>
1596
+ <article class="small-3 columns">
1597
+ <header>
1598
+ <a href="http://www.artofmanliness.com/2016/05/09/how-to-comfort-someone-whos-sadcrying/" data-wpel-link="internal">
1599
+ <div class="navth thumb_container">
1600
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg">
1601
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg"></noscript>
1602
+ </div>
1603
+ <h2 class="post-title">How to Comfort Someone Who’s Sad/Crying</h2>
1604
+ </a>
1605
+ </header>
1606
+ <footer></footer>
1607
+ </article>
1608
+ </div>
1609
+ <div class="category-253" data-id="category-253">
1610
+ <article class="small-3 columns">
1611
+ <header>
1612
+ <a href="http://www.artofmanliness.com/2016/09/23/weekend-diy-project-make-a-toddler-activity-board/" data-wpel-link="internal">
1613
+ <div class="navth thumb_container">
1614
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/diytoddlerboard-copy-538x280.jpg">
1615
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/diytoddlerboard-copy-538x280.jpg"></noscript>
1616
+ </div>
1617
+ <h2 class="post-title">Weekend DIY Project: Make a Toddler Activity Board</h2>
1618
+ </a>
1619
+ </header>
1620
+ <footer></footer>
1621
+ </article>
1622
+ <article class="small-3 columns">
1623
+ <header>
1624
+ <a href="http://www.artofmanliness.com/2016/08/11/so-you-want-my-job-stay-at-home-dad/" data-wpel-link="internal">
1625
+ <div class="navth thumb_container">
1626
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/P1040965-538x280.jpg">
1627
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/P1040965-538x280.jpg"></noscript>
1628
+ </div>
1629
+ <h2 class="post-title">So You Want My Job: Stay-at-Home Dad</h2>
1630
+ </a>
1631
+ </header>
1632
+ <footer></footer>
1633
+ </article>
1634
+ <article class="small-3 columns">
1635
+ <header>
1636
+ <a href="http://www.artofmanliness.com/2016/07/20/2-tips-for-having-kid-2/" data-wpel-link="internal">
1637
+ <div class="navth thumb_container">
1638
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/Second-Kid-900-1-538x280.jpg">
1639
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/Second-Kid-900-1-538x280.jpg"></noscript>
1640
+ </div>
1641
+ <h2 class="post-title">2 Ways to Make Kid #2 a Smooth Transition</h2>
1642
+ </a>
1643
+ </header>
1644
+ <footer></footer>
1645
+ </article>
1646
+ <article class="small-3 columns">
1647
+ <header>
1648
+ <a href="http://www.artofmanliness.com/2016/06/13/podcast-209-what-the-navy-seals-can-teach-you-about-raising-your-kids/" data-wpel-link="internal">
1649
+ <div class="navth thumb_container">
1650
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/raising-men-1.jpg">
1651
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/raising-men-1.jpg"></noscript>
1652
+ </div>
1653
+ <h2 class="post-title">Podcast #209: What the Navy SEALs Can Teach You About Raising Your Kids</h2>
1654
+ </a>
1655
+ </header>
1656
+ <footer></footer>
1657
+ </article>
1658
+ </div>
1659
+ <div class="category-256" data-id="category-256">
1660
+ <article class="small-3 columns">
1661
+ <header>
1662
+ <a href="http://www.artofmanliness.com/2016/06/17/how-not-to-be-disappointed-with-your-friends/" data-wpel-link="internal">
1663
+ <div class="navth thumb_container">
1664
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/friends2-489x280.png">
1665
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/friends2-489x280.png"></noscript>
1666
+ </div>
1667
+ <h2 class="post-title">How Not to Be Disappointed With Your Friends</h2>
1668
+ </a>
1669
+ </header>
1670
+ <footer></footer>
1671
+ </article>
1672
+ <article class="small-3 columns">
1673
+ <header>
1674
+ <a href="http://www.artofmanliness.com/2016/05/09/how-to-comfort-someone-whos-sadcrying/" data-wpel-link="internal">
1675
+ <div class="navth thumb_container">
1676
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg">
1677
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg"></noscript>
1678
+ </div>
1679
+ <h2 class="post-title">How to Comfort Someone Who’s Sad/Crying</h2>
1680
+ </a>
1681
+ </header>
1682
+ <footer></footer>
1683
+ </article>
1684
+ <article class="small-3 columns">
1685
+ <header>
1686
+ <a href="http://www.artofmanliness.com/2016/03/21/the-3-encounter-rule/" data-wpel-link="internal">
1687
+ <div class="navth thumb_container">
1688
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/03/3-Encounter-Rule-538x280.jpg">
1689
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/03/3-Encounter-Rule-538x280.jpg"></noscript>
1690
+ </div>
1691
+ <h2 class="post-title">The 3-Encounter Rule</h2>
1692
+ </a>
1693
+ </header>
1694
+ <footer></footer>
1695
+ </article>
1696
+ <article class="small-3 columns">
1697
+ <header>
1698
+ <a href="http://www.artofmanliness.com/2016/02/10/podcast-176-the-vanishing-neighbor-the-transformation-of-american-community/" data-wpel-link="internal">
1699
+ <div class="navth thumb_container">
1700
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/02/neigbor.png">
1701
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/02/neigbor.png"></noscript>
1702
+ </div>
1703
+ <h2 class="post-title">Podcast #176: The Vanishing Neighbor & The Transformation of American Community</h2>
1704
+ </a>
1705
+ </header>
1706
+ <footer></footer>
1707
+ </article>
1708
+ </div>
1709
+ <div class="category-255" data-id="category-255">
1710
+ <article class="small-3 columns">
1711
+ <header>
1712
+ <a href="http://www.artofmanliness.com/2016/10/16/secrets-healthy-sex-life-advice-legendary-bodybuilder-joe-weider/" data-wpel-link="internal">
1713
+ <div class="navth thumb_container">
1714
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/weiderfeat-435x280.png">
1715
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/10/weiderfeat-435x280.png"></noscript>
1716
+ </div>
1717
+ <h2 class="post-title">Legendary Bodybuilder Joe Weider's Secrets to a Healthy Sex Life</h2>
1718
+ </a>
1719
+ </header>
1720
+ <footer></footer>
1721
+ </article>
1722
+ <article class="small-3 columns">
1723
+ <header>
1724
+ <a href="http://www.artofmanliness.com/2016/09/29/podcast-239-saving-marriage-starts/" data-wpel-link="internal">
1725
+ <div class="navth thumb_container">
1726
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-21-at-12.25.20-PM-538x280.png">
1727
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/09/Screen-Shot-2016-09-21-at-12.25.20-PM-538x280.png"></noscript>
1728
+ </div>
1729
+ <h2 class="post-title">Podcast #239: Saving Your Marriage Before It Starts</h2>
1730
+ </a>
1731
+ </header>
1732
+ <footer></footer>
1733
+ </article>
1734
+ <article class="small-3 columns">
1735
+ <header>
1736
+ <a href="http://www.artofmanliness.com/2016/06/08/how-and-why-to-hold-a-weekly-marriage-meeting/" data-wpel-link="internal">
1737
+ <div class="navth thumb_container">
1738
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/marriagemeeting-461x280.jpg">
1739
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/marriagemeeting-461x280.jpg"></noscript>
1740
+ </div>
1741
+ <h2 class="post-title">How and Why to Hold a Weekly Marriage Meeting</h2>
1742
+ </a>
1743
+ </header>
1744
+ <footer></footer>
1745
+ </article>
1746
+ <article class="small-3 columns">
1747
+ <header>
1748
+ <a href="http://www.artofmanliness.com/2016/05/09/how-to-comfort-someone-whos-sadcrying/" data-wpel-link="internal">
1749
+ <div class="navth thumb_container">
1750
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg">
1751
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg"></noscript>
1752
+ </div>
1753
+ <h2 class="post-title">How to Comfort Someone Who’s Sad/Crying</h2>
1754
+ </a>
1755
+ </header>
1756
+ <footer></footer>
1757
+ </article>
1758
+ </div>
1759
+ <div class="category-317" data-id="category-317">
1760
+ <article class="small-3 columns">
1761
+ <header>
1762
+ <a href="http://www.artofmanliness.com/2016/08/30/podcast-230-how-to-deal-with-aggressive-people/" data-wpel-link="internal">
1763
+ <div class="navth thumb_container">
1764
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.00.08-AM.png">
1765
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/08/Screen-Shot-2016-08-30-at-10.00.08-AM.png"></noscript>
1766
+ </div>
1767
+ <h2 class="post-title">Podcast #230: How to Deal With Aggressive People</h2>
1768
+ </a>
1769
+ </header>
1770
+ <footer></footer>
1771
+ </article>
1772
+ <article class="small-3 columns">
1773
+ <header>
1774
+ <a href="http://www.artofmanliness.com/2016/07/12/5-ways-to-build-your-personal-magnetism/" data-wpel-link="internal">
1775
+ <div class="navth thumb_container">
1776
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/07/hat-500x280.jpg">
1777
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/07/hat-500x280.jpg"></noscript>
1778
+ </div>
1779
+ <h2 class="post-title">5 Ways to Build Your Personal Magnetism</h2>
1780
+ </a>
1781
+ </header>
1782
+ <footer></footer>
1783
+ </article>
1784
+ <article class="small-3 columns">
1785
+ <header>
1786
+ <a href="http://www.artofmanliness.com/2016/06/20/podcast-211-ask-frances-difficult-conversations-small-talk-and-charisma/" data-wpel-link="internal">
1787
+ <div class="navth thumb_container">
1788
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/06/how-to-wow-324x280.jpg">
1789
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/06/how-to-wow-324x280.jpg"></noscript>
1790
+ </div>
1791
+ <h2 class="post-title">Podcast #211: Difficult Conversations, Small Talk, and Charisma</h2>
1792
+ </a>
1793
+ </header>
1794
+ <footer></footer>
1795
+ </article>
1796
+ <article class="small-3 columns">
1797
+ <header>
1798
+ <a href="http://www.artofmanliness.com/2016/05/09/how-to-comfort-someone-whos-sadcrying/" data-wpel-link="internal">
1799
+ <div class="navth thumb_container">
1800
+ <img class="lazy-load th wp-post-image mega-menu-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg">
1801
+ <noscript><img class="th wp-post-image mega-menu-img" src="https://content.artofmanliness.com/uploads/2016/05/crying-538x280.jpg"></noscript>
1802
+ </div>
1803
+ <h2 class="post-title">How to Comfort Someone Who’s Sad/Crying</h2>
1804
+ </a>
1805
+ </header>
1806
+ <footer></footer>
1807
+ </article>
1808
+ </div>
1809
+ </div>
1810
+ </div>
1811
+ <div class="row-fluid category-156 masthead-dropdown hidden" data-id="category-156">
1812
+ <div class="row-fluid">
1813
+ <article class="small-3 columns">
1814
+ <header>
1815
+ <div class="cont-wrap-img">
1816
+ <a href="http://www.artofmanliness.com/2016/10/20/podcast-245-workout-world-forgot/" data-wpel-link="internal">
1817
+ <div class="navth thumb_container">
1818
+ <img class="lazy-load th wp-post-image mega-menu-other-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/erwan-500x280.jpg">
1819
+ <noscript><img class="th wp-post-image mega-menu-other-img" src="https://content.artofmanliness.com/uploads/2016/10/erwan-500x280.jpg"></noscript>
1820
+ </div>
1821
+ <h2 class="post-title">Podcast #245: The Workout the World Forgot</h2>
1822
+ </a>
1823
+ </div>
1824
+ </header>
1825
+ <footer></footer>
1826
+ </article>
1827
+ <article class="small-3 columns">
1828
+ <header>
1829
+ <div class="cont-wrap-img">
1830
+ <a href="http://www.artofmanliness.com/2016/10/18/podcast-244-ask-frances-brain-farts-braggarts-civil-political-discussion/" data-wpel-link="internal">
1831
+ <div class="navth thumb_container">
1832
+ <img class="lazy-load th wp-post-image mega-menu-other-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/FrancesColeJones-538x280.jpg">
1833
+ <noscript><img class="th wp-post-image mega-menu-other-img" src="https://content.artofmanliness.com/uploads/2016/10/FrancesColeJones-538x280.jpg"></noscript>
1834
+ </div>
1835
+ <h2 class="post-title">Podcast #244: Ask Frances -- Brain Farts, Braggarts, and Civil Political Discussion</h2>
1836
+ </a>
1837
+ </div>
1838
+ </header>
1839
+ <footer></footer>
1840
+ </article>
1841
+ <article class="small-3 columns">
1842
+ <header>
1843
+ <div class="cont-wrap-img">
1844
+ <a href="http://www.artofmanliness.com/2016/10/14/podcast-243-becoming-barbarian/" data-wpel-link="internal">
1845
+ <div class="navth thumb_container">
1846
+ <img class="lazy-load th wp-post-image mega-menu-other-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/barbarian-1-538x274.jpg">
1847
+ <noscript><img class="th wp-post-image mega-menu-other-img" src="https://content.artofmanliness.com/uploads/2016/10/barbarian-1-538x274.jpg"></noscript>
1848
+ </div>
1849
+ <h2 class="post-title">Podcast #243: Becoming a Barbarian</h2>
1850
+ </a>
1851
+ </div>
1852
+ </header>
1853
+ <footer></footer>
1854
+ </article>
1855
+ <article class="small-3 columns">
1856
+ <header>
1857
+ <div class="cont-wrap-img">
1858
+ <a href="http://www.artofmanliness.com/2016/10/11/podcast-242-forgotten-virtue-reverence/" data-wpel-link="internal">
1859
+ <div class="navth thumb_container">
1860
+ <img class="lazy-load th wp-post-image mega-menu-other-img" style="display:none;" data-original="https://content.artofmanliness.com/uploads/2016/10/reverence-1.jpeg">
1861
+ <noscript><img class="th wp-post-image mega-menu-other-img" src="https://content.artofmanliness.com/uploads/2016/10/reverence-1.jpeg"></noscript>
1862
+ </div>
1863
+ <h2 class="post-title">Podcast #242: The Forgotten Virtue of Reverence</h2>
1864
+ </a>
1865
+ </div>
1866
+ </header>
1867
+ <footer></footer>
1868
+ </article>
1869
+ </div>
1870
+ </div>
1871
+ </div>
1872
+ </div>
1873
+ </div>
1874
+ <header class="site-header">
1875
+ <div class="section-bg">
1876
+ <div class="site-banner container row">
1877
+ <div class="site-logo">
1878
+ <a href="/" data-wpel-link="internal"><img src="http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/images/header.png" class="printlogo hidden"/></a>
1879
+ </div>
1880
+ </div>
1881
+ </div>
1882
+ </header><div class="builder-module-background-wrapper builder-module-widget-bar-background-wrapper builder-module-3-background-wrapper builder-module-widget-bar-1-background-wrapper builder-module-middle-background-wrapper builder-module-widget-bar-last-background-wrapper builder-module-before-content-background-wrapper builder-module-after-html-background-wrapper default-module-style-background-wrapper" id="builder-module-55f8e63b26ab3-background-wrapper">
1883
+ <div class="builder-module-outer-wrapper builder-module-widget-bar-outer-wrapper builder-module-3-outer-wrapper builder-module-widget-bar-1-outer-wrapper builder-module-middle-outer-wrapper builder-module-widget-bar-last-outer-wrapper builder-module-before-content-outer-wrapper builder-module-after-html-outer-wrapper default-module-style-outer-wrapper" id="builder-module-55f8e63b26ab3-outer-wrapper">
1884
+ <div class="builder-module builder-module-widget-bar builder-module-3 builder-module-widget-bar-1 builder-module-middle builder-module-widget-bar-last builder-module-before-content builder-module-after-html default-module-style clearfix" id="builder-module-55f8e63b26ab3">
1885
+ <div class="builder-module-block-outer-wrapper builder-module-sidebar-outer-wrapper builder-module-column-1-outer-wrapper single clearfix">
1886
+ <div class="builder-module-block builder-module-sidebar builder-module-column-1 sidebar single clearfix">
1887
+ <div class="widget-wrapper single widget-wrapper-single widget-wrapper-1 clearfix">
1888
+ <div class="widget-background-wrapper" id="it_widget_content-35-background-wrapper"><div class="widget widget-1 widget-single clearfix widget-it-content" id="it_widget_content-35"> <div class="widget-content clearfix">
1889
+ <div style="text-align:center;" id="gpt-ad-top"></div>
1890
+ </div>
1891
+ </div></div></div>
1892
+ </div>
1893
+ </div>
1894
+ </div>
1895
+ </div>
1896
+ </div>
1897
+ <div class="builder-module-background-wrapper builder-module-content-background-wrapper builder-module-4-background-wrapper builder-module-content-1-background-wrapper builder-module-middle-background-wrapper builder-module-content-last-background-wrapper builder-module-before-navigation-background-wrapper builder-module-after-widget-bar-background-wrapper default-module-style-background-wrapper" id="builder-module-52f137ff57568-background-wrapper">
1898
+ <div class="builder-module-outer-wrapper builder-module-content-outer-wrapper builder-module-4-outer-wrapper builder-module-content-1-outer-wrapper builder-module-middle-outer-wrapper builder-module-content-last-outer-wrapper builder-module-before-navigation-outer-wrapper builder-module-after-widget-bar-outer-wrapper default-module-style-outer-wrapper" id="builder-module-52f137ff57568-outer-wrapper">
1899
+ <div class="builder-module builder-module-content builder-module-4 builder-module-content-1 builder-module-middle builder-module-content-last builder-module-before-navigation builder-module-after-widget-bar default-module-style clearfix" id="builder-module-52f137ff57568">
1900
+ <div class="builder-module-block-outer-wrapper builder-module-element-outer-wrapper builder-module-column-1-outer-wrapper left clearfix">
1901
+ <div class="builder-module-block builder-module-element builder-module-column-1 clearfix">
1902
+ <div class="main-wrap" style="display:inline-block; max-width: 100%;">
1903
+ <div class="main">
1904
+ <article class="single-post post-33566 post type-post status-publish format-standard has-post-thumbnail hentry category-movies category-travel-leisure" id="post-33566">
1905
+ <input type="hidden" class="history-url" value="/2013/06/04/best-western-movies/"/>
1906
+ <input type="hidden" class="load-next" value="33643"/>
1907
+ <input type="hidden" class="load-next-url" value="http://www.artofmanliness.com/2013/06/04/last-day-to-enter-the-huckberry-x-art-of-manliness-fathers-day-giveaway/"/>
1908
+ <input type="hidden" class="load-next-title" value="Last Day to Enter the Huckberry x Art of Manliness Father&#8217;s Day Giveaway"/>
1909
+ <header>
1910
+ <p class="single-date"><span itemprop="author">Brett &#38; Kate McKay</span> | June 4, 2013</p>
1911
+ <a href="http://www.artofmanliness.com/category/travel-leisure/movies/" rel="category tag" data-wpel-link="internal">Movies</a>, <a href="http://www.artofmanliness.com/category/travel-leisure/" rel="category tag" data-wpel-link="internal">Travel &amp; Leisure</a> <h1 class="post-title entry-title" itemprop="headline">The 17 Best Western Movies</h1>
1912
+ </header>
1913
+ <div class="featured-image">
1914
+ <p></p>
1915
+ </div>
1916
+ <div class="post-content">
1917
+ <div class="post-body large-12 columns">
1918
+ <p><img class="aligncenter wp-image-33704 size-full" src="https://content.artofmanliness.com/uploads//2013/06/westerns12.jpg" alt="best western movies films " width="550" height="309"/><div id="tiEmbedPlayer" data-type="large"></div></p>
1919
+ <p>Few figures in history have had as powerful an impact on American masculinity as the cowboy. For over a century, the cowboy has &#8212; for better or for worse &#8212; been a standard of rugged individualism and stoic bravery for the American male. While the mythologization of the American cowboy began all the way back in the 1880s with dime novels and Wild West shows, it wasn&#8217;t until the advent of twentieth century cinema that the cowboy cemented his place as an icon of manliness.</p>
1920
+ <p>The Western has been a popular genre of cinema since the very beginning of film, and successive generations of filmmakers have used the &#8220;Wild West&#8221; as a backdrop on which to explore the social issues of their respective eras. Many of the early silent films at the beginning of the 20th century were Westerns, the most famous being 1903&#8217;s <em><a href="https://www.youtube.com/watch?v=8oTdPklBE0Y" target="_blank" data-wpel-link="external" rel="external noopener noreferrer">The Great Train Robbery</a>. </em>During the 1920s, the Western film genre produced some of Hollywood&#8217;s first megastars such as Tom Mix and William S. Hart. These early Westerns were heavy on action, but light on plot. Their primary goal was to simply entertain.</p>
1921
+ <p>It isn&#8217;t until the 1930s that the Western became an avenue for telling stories with searching and hard-hitting messages. Directors and screenwriters used the genre to overtly and symbolically explore the pressing subjects of their day like racism, nationalism, capitalism, family, and honor &#8212; issues deeply meshed with manhood. During the Great Depression, for example, when men felt punished by the economy even though they had worked hard and done the right thing, Western plots often revolved around a man who is mistaken for an outlaw and falsely accused of a crime he didn&#8217;t commit and must find the real criminal and seek justice himself. In the 50s, it was society&#8217;s anxiety about conformity that began to be reflected through the prism of the Old West. Instead of taking on bad guys with a posse, the protagonists in these mid-century Westerns (<em>Shane </em>and <em>High Noon </em>being the best examples) were loners who were compelled by their own values to fight against wrong while those around them cowered in fear like sheep. The tenor of Westerns changed once again during the cultural, social, and political upheaval of the 1960s. Like many films during that time, the antihero now took center-stage, and the heroes in these films were typically outlaws who were fighting against a corrupt system of justice and inequality (see <em>Butch Cassidy and the Sundance Kid). </em>During the 70s and 80s, the classic Western went into hibernation. It wasn&#8217;t until the late 80s and early 90s that the genre returned to prominence in film and TV. Reflecting the post-modern era in which they were made, these more recent Westerns are much more morally ambiguous (<em>Unforgiven</em>) or satirical and/or comedic (<em>City Slickers)</em> than their earlier counterparts.</p>
1922
+ <p>Because the Western has played such a huge role in the shaping of American masculinity (not to mention simply being enjoyable entertainment), I thought it only proper to highlight some of the best from the genre. Below you&#8217;ll find my picks. I tried to get a good mixture from different time periods. It goes without saying that John Wayne makes an appearance in several of these films. Enjoy.</p>
1923
+ <h3><a href="http://www.amazon.com/gp/product/B0035JPUD0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0035JPUD0&amp;linkCode=as2&amp;tag=stucosuccess-20" data-wpel-link="external" target="_blank" rel="external noopener noreferrer"><strong>High Noon</strong></a></h3>
1924
+ <p><a href="http://www.amazon.com/gp/product/B0035JPUD0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0035JPUD0&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33569 size-full" src="https://content.artofmanliness.com/uploads//2013/05/highnoon.jpg" alt="high noon movie old western gary cooper walking downtown" width="500" height="395"/></a></p>
1925
+ <p><em>High Noon</em> is film about being torn between duty and love and standing up for what you believe in, even when everyone else abandons you. Gary Cooper plays Will Kane, a town marshal from New Mexico, who settles down with his pacifist Quaker wife (played by Grace Kelly, one of your <a href="http://www.artofmanliness.com/2008/10/21/your-grandpas-babes/" data-wpel-link="internal">grandpa’s babes</a>). Kane&#8217;s plans to retire to a peaceful life are interrupted after he gets word that a former gunslinger is coming in on the noon train to settle an old score with him. His wife pleads with him to leave town, but Kane knows he can’t. He has a duty to defend the town and his honor. Will finds himself alone in the battle as everyone in town, including his deputy sheriff, have turned away from him. The tension builds, leading up to the final gun battle &#8212; the quintessential mano-a-mano showdown that historians say rarely actually happened in the Old West, but has become an indelible part of popular culture.</p>
1926
+ <p><em>Best line: “Don’t shove me Harv. I’m tired of being shoved.”</em></p>
1927
+ <h3><a href="http://www.amazon.com/gp/product/B00AGYXKLG/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00AGYXKLG&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Stagecoach</strong></a></h3>
1928
+ <p><a href="http://www.amazon.com/gp/product/B00AGYXKLG/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00AGYXKLG&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33570 size-full" src="https://content.artofmanliness.com/uploads//2013/05/stagecoach.jpg" alt="stagecoach old western movie film john wayne with rifle" width="500" height="354"/></a></p>
1929
+ <p>This is the movie that made John Wayne a star and set the standard for all subsequent Westerns (some would say it set the standard for all 20th century cinema). Directed by the legendary John Ford and shot on scene in Monument Park, <em>Stagecoach </em>follows a group of nine strangers as they cross dangerous Apache territory in &#8212; you guessed it &#8212; a stagecoach. All of the characters have their own personal demons that they&#8217;re running from and the journey through the treacherous Apache territory in many ways serves as a symbolic road to redemption for each of them. The acting and screenplay is top notch. Despite being filmed in 1939, the movie is still fresh and engaging. Be on the lookout for the epic chase scene featuring one of the most famous movie stunts of all time performed by Yakima Canutt.</p>
1930
+ <p><em>Best line: &#8220;Well, there are some things a man just can&#8217;t run away from.&#8221;</em></p>
1931
+ <h3><a href="http://www.amazon.com/gp/product/B001QJUX24/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001QJUX24&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>The Searchers</strong></a></h3>
1932
+ <p><a href="http://www.amazon.com/gp/product/B001QJUX24/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001QJUX24&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter" src="http://content.artofmanliness.com/uploads//2013/05/searchers1.jpg" alt="searchers old western movie film john wayne carrying woman" width="500" height="259"/></a></p>
1933
+ <p>In this film, also directed by John Ford, John Wayne gives the most intense acting performance of his career as the dark and vengeful Ethan Edwards, a man who vows to kill the Comanche raiders who murdered his beloved sister-in-law, brother, and took captive two of their daughters. Wayne does a fantastic job in embodying a conflicted, complex man whose racism and desire for revenge sets up a situation far more morally ambiguous than Cowboys vs. Indians.</p>
1934
+ <p><em>Best line: “That’ll be the day.”</em></p>
1935
+ <h3><a href="http://www.amazon.com/gp/product/B0018PH3L0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0018PH3L0&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Lonesome Dove</strong></a></h3>
1936
+ <p><a href="http://www.amazon.com/gp/product/B0018PH3L0/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0018PH3L0&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter" src="http://content.artofmanliness.com/uploads//2013/05/lonsome.jpg" alt="lonesome dove tv miniseries robert duvall " width="500" height="248"/></a></p>
1937
+ <p>Technically this isn&#8217;t a movie, but rather a TV mini-series, but I don&#8217;t care. <em>Lonesome Dove</em> is a Western every man should see. Even if you don&#8217;t like Westerns, you&#8217;ll love <em>Lonesome Dove</em>. Its themes of friendship, regret, and love will resonate with any man. The action scenes are just icing on the cake. Based on the Pulitzer Prize-winning novel by Larry McMurty, <em>Lonesome Dove</em> follows two retired Texas Rangers &#8212; Augustus McCrae (Robert Duvall) and Woodrow Call (Tommy Lee Jones) &#8212; as they lead a cattle drive from South Texas all the way to Montana. The production on <em>Lonesome Dove </em>is<em>, </em>bar none, the best in Western cinema. The costumes, the locations, even the way the characters speak make you feel like you&#8217;ve been plopped on a horse in 1876 America. But what really separates <em>Lonesome Dove </em>from the rest of the Westerns on this list (and I&#8217;d go as far as saying most movies ever made) are the characters. Thanks to top-notch writing and acting, <em>Lonesome Dove </em>is one of those rare movies that makes you feel like its fictional characters are real life people. Not only that, you feel like old friends with them by the end. You&#8217;ll cheer their triumphs and bawl your eyes out when tragedy strikes. Do yourself a favor and rent the complete series and watch it. You&#8217;ll be a better man for it.</p>
1938
+ <p>Trivia: Our son&#8217;s name &#8212; Augustus McKay &#8212; was inspired by August McCrae. That&#8217;s how much I love this book and movie.</p>
1939
+ <p><em>Best line: &#8220;It ain&#8217;t dying I&#8217;m talking about, it&#8217;s living.&#8221;</em></p>
1940
+ <h3><a href="http://www.amazon.com/gp/product/B0014J8D9Q/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0014J8D9Q&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Unforgiven</strong></a></h3>
1941
+ <p><a href="http://www.amazon.com/gp/product/B0014J8D9Q/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0014J8D9Q&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33571 size-full" src="https://content.artofmanliness.com/uploads//2013/05/unforgiven.jpg" alt="unforgiven western movie film riding horses" width="500" height="330"/></a></p>
1942
+ <p>Cinema often glorifies the Old West as a mythic time when good guys wore white and the bad ones wore black. In <em>Unforgiven</em>, director/actor/producer Clint Eastwood shines a light on the dark, violent, and morally ambiguous aspects of life in frontier America. Clint Eastwood plays William Munny, a once notorious and violent killer. Now, he’s just a quiet and tired farmer who is a devoted father still mourning his dead wife. But Will’s old life comes back to haunt him when he’s asked to do a hit on a cowboy who slashed the face of a prostitute. Will is transplanted from his farm in Kansas to a town in Wyoming where he meets Sheriff Little Bill Daggett (Gene Hackman), a mean son-of-a-bitch who is determined to not let the hit go down, no matter what it takes. Hold onto your hats, partners, this isn’t your grandpa’s Western.</p>
1943
+ <p><em>Best line: “Hell of a thing, killing a man. You take away all he’s got and all he’s ever gonna have.”</em></p>
1944
+ <h3><a href="http://www.amazon.com/gp/product/B0056JJY2K/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0056JJY2K&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Shane</strong></a></h3>
1945
+ <p><a href="http://www.amazon.com/gp/product/B0056JJY2K/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0056JJY2K&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33572 size-full" src="https://content.artofmanliness.com/uploads//2013/05/shane1.png" alt="shane old western movie shane talking with young boy " width="554" height="401"/></a></p>
1946
+ <p>This is a great <a title="Are You a Sheep or Sheepdog? Part I" href="http://www.artofmanliness.com/2013/05/14/are-you-a-sheep-or-sheepdog/" data-wpel-link="internal">sheepdog </a>movie. A quiet gunslinger who is trying to escape his past befriends a pioneer family that has settled out west. He attempts to settle down and become a hired hand to the family, but the ranchers who want to drive cattle through the homesteaders’ property are attempting to push them out. Shane tries to stay out of the disputes, but keeps being drawn in and is finally compelled to put his six shooter back on to protect his adoptive family. Perhaps the most touching part of the movie is the relationship Shane develops with the farmer’s son.</p>
1947
+ <p><em>Best line: “A gun is a tool, Marian; no better or no worse than any other tool: an axe, a shovel or anything. A gun is as good or as bad as the man using it. Remember that.”</em></p>
1948
+ <h3><a href="http://www.amazon.com/gp/product/B004LQEYAG/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004LQEYAG&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Butch Cassidy and the Sundance Kid</strong></a></h3>
1949
+ <p><a href="http://www.amazon.com/gp/product/B004LQEYAG/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004LQEYAG&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33573 size-full" src="https://content.artofmanliness.com/uploads//2013/05/butch.jpg" alt="butch cassidy and the sundance kid western movie " width="500" height="329"/></a></p>
1950
+ <p>Based loosely on the real lives of Western outlaws Robert LeRoy Parker (aka Butch Cassidy) and Harry Longabaugh (aka the Sundance Kid), <em>Butch Cassidy and the Sundance Kid</em> is a classic movie about two buddies trying to make it in a changing world. What’s funny about this flick is that you forget that these guys were hardened criminals who robbed banks and trains for a living. The easygoing charm Robert Redford and Paul Newman bring to their roles makes you like the characters despite their choice of profession. Their clever hijinks and humor make the movie an enjoyable ride.</p>
1951
+ <h3><a href="http://www.amazon.com/gp/product/B0011XF81G/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0011XF81G&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>The Magnificent Seven</strong></a></h3>
1952
+ <p><a href="http://www.amazon.com/gp/product/B0011XF81G/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0011XF81G&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33574 size-full" src="https://content.artofmanliness.com/uploads//2013/05/seven.jpg" alt="magnificent seven old western movie film group aiming runs rifles" width="500" height="316"/></a></p>
1953
+ <p>Inspired by the classic Japanese film <em>Seven Samurai</em>, <em>The Magnificent Seven </em>follows a group of seven American gunfighters who band together to defend an oppressed Mexican village. This film has it all: great story, great cast, and one of the most iconic movie scores of all time.</p>
1954
+ <p><em>Best line: &#8220;It&#8217;s only a matter of knowing how to shoot a gun. Nothing big about that.&#8221;</em></p>
1955
+ <h3><a href="http://www.amazon.com/gp/product/B0017VXATO/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0017VXATO&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Red River</strong></a></h3>
1956
+ <p><a href="http://www.amazon.com/gp/product/B0017VXATO/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0017VXATO&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33575 size-full" src="https://content.artofmanliness.com/uploads//2013/05/Redriver.jpg" alt="Red river western movie film john wayne " width="500" height="379"/></a></p>
1957
+ <p>What happens to a man when he&#8217;s consumed by obsession? That&#8217;s the question that we see answered in 1948&#8217;s <em>Red River</em>. John Wayne plays Thomas Dunson, a determined and sometimes ruthless man who has the goal of forming the largest cattle ranch in America. With nothing but his trusty trail-hand (Walter Brennan) and a young boy who survived an Indian attack on his wagon train (Montgomery Clift), Dunson does just that. To make money, though, he&#8217;s got to get the cattle to market, so Dunson sets out to drive thousands of cattle from Texas to Missouri. Along the way, Dunson&#8217;s brutal and dictatorial leadership causes his young protege and adopted son to mutiny and take the cattle from Dunson. Dunson vows to find and kill his boy. Does he do it in the end? You&#8217;ll have to watch the movie to find out.</p>
1958
+ <p><em>Best line: &#8220;Get a shovel and my Bible. I&#8217;ll read over him.&#8221;</em></p>
1959
+ <h3><a href="http://www.amazon.com/gp/product/B0011XBLUS/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0011XBLUS&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>The Good, the Bad and the Ugly</strong></a></h3>
1960
+ <p><a href="http://www.amazon.com/gp/product/B0011XBLUS/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0011XBLUS&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33576 size-full" src="https://content.artofmanliness.com/uploads//2013/05/manwithnoname.jpg" alt="good bad ugly clint eastwood standing with blanket around shoulders " width="500" height="377"/></a></p>
1961
+ <p><em>The Good, the Bad and the Ugly</em> is the last in Sergio Leone’s trilogy of “spaghetti westerns.” Despite being the last, it has come to stand on its own. Even if you haven’t seen the film, you probably know something about it. Most likely you’ve heard the <a href="http://www.youtube.com/watch?v=LQGGQ-FCe_w" target="_blank" data-wpel-link="external" rel="external noopener noreferrer">iconic theme song</a> with its spooky “wha wha wha” shouts. And you’ve probably seen images and scenes of Clint Eastwood wearing a poncho and smoking a cigar. The film follows three cowboys during the Civil War who try to double cross each other in search of Confederate gold. There’s not much of a deep message in this film. It’s just a lot of fun to watch.</p>
1962
+ <p><em>Best line: “When you have to shoot, shoot. Don’t talk.”</em></p>
1963
+ <h3><strong><a href="http://www.amazon.com/gp/product/B0054NRPMO/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0054NRPMO&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer">True Grit (2010)</a><br/>
1964
+ </strong></h3>
1965
+ <p><a href="http://www.amazon.com/gp/product/B0054NRPMO/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0054NRPMO&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33578 size-full" src="https://content.artofmanliness.com/uploads//2013/05/truegrit.jpg" alt="true grit new version jeff bridges rooster cogburn " width="500" height="239"/></a></p>
1966
+ <p>Hired by a young girl to track down the man that killed her father, Jeff Bridges takes on the role of Rooster Cogburn, the marshal with “grit” enough to bring the man to justice. The 2010 version is definitely better than the 1969 John Wayne version. Bridges simply did a superior job portraying Rooster Cogburn, and thanks to the Coen brothers, the movie just seemed more real and alive.</p>
1967
+ <p><em>Best line: “Fill  your hand you son-of-a-bitch!”</em></p>
1968
+ <h3><a href="http://www.amazon.com/gp/product/B004HGDV2C/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004HGDV2C&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>The Wild Bunch</strong></a></h3>
1969
+ <p><a href="http://www.amazon.com/gp/product/B004HGDV2C/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B004HGDV2C&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter size-full wp-image-33579" src="http://content.artofmanliness.com/uploads//2013/05/wildbunch.jpg" alt="wildbunch" width="500" height="211"/></a></p>
1970
+ <p><em>The Wild Bunch</em> is a tale about a group of outlaws who see the world they know quickly disappearing. Set in 1913, the West by then was no longer &#8220;wild.&#8221; The old rule of &#8220;might makes right&#8221; had been replaced by government-dispensed justice. Moreover, technology had made many of the skills and know-how needed to survive and thrive in the Wild West obsolete. Sensing that their time is up, a group of outlaws decide to go out in a blaze of glory and gore. <em>The Wild Bunch </em>was and is a controversial film. Its violence and nihilism paints a bleak picture of life at the end of the American West. In many ways, <i>The Wild Bunch </i>symbolized the end of the classic American Western. Just as the outlaws in the film were out of step with a changing society, so too were Westerns out of step with 1969 America. It&#8217;s interesting to note that very few new major Westerns were produced after <em>The Wild Bunch</em> was released in 1969.</p>
1971
+ <p><em>Best line: &#8220;Let&#8217;s go.&#8221;</em></p>
1972
+ <h3><a href="http://www.amazon.com/gp/product/B003VW8GT6/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B003VW8GT6&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Rio Bravo</strong></a></h3>
1973
+ <p><a href="http://www.amazon.com/gp/product/B003VW8GT6/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B003VW8GT6&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33582 size-full" src="https://content.artofmanliness.com/uploads//2013/05/riobravo.jpg" alt="rio bravo old western movie film john wayne in sheriff office" width="500" height="284"/></a></p>
1974
+ <p>A small-town sheriff (John Wayne) in the American West enlists the help of a cripple (Walter Brennan), a drunk (Dean Martin, of course), and a young gunfighter (Ricky Nelson &#8212; how dreamy&#8230;) in his efforts to keep the brother of the local bad guy in jail. Director Howard Hawks made this film in reaction to <em>High Noon. </em>Both he and John Wayne despised what they saw as the wimpy and unmanly lack of resolve in Gary Cooper&#8217;s character. I&#8217;m not sure I agree with Wayne and Hawks about that, but that&#8217;s a debate for another day. Overall, <em>Rio Bravo </em>has everything you should expect in a good 1950s Western: action, adventure, and heroics. We even get to hear old Dean-O sing a tune. <i><br/>
1975
+ </i></p>
1976
+ <p><em>Best line: &#8220;Hey, Dude! How do ya like them apples?&#8221;</em></p>
1977
+ <h3><a href="http://www.amazon.com/gp/product/6304711905/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=6304711905&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>Tombstone</strong></a></h3>
1978
+ <p><a href="http://www.amazon.com/gp/product/6304711905/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=6304711905&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33683 size-full" src="https://content.artofmanliness.com/uploads//2013/06/tombstone.jpg" alt="tombstone western movie walking down main street black clothes " width="500" height="337"/></a></p>
1979
+ <p>After years of chasing outlaws, legendary lawman Wyatt Earp retires and takes up residence  in the town of Tombstone, Arizona. His plans to live out his days as a respectable businessman are interrupted when a gang of hell-raisers called &#8220;the Cowboys&#8221; starts causing trouble in the area. Not able to stand the lawlessness, Earp joins his brothers in getting rid of the Cowboys. Tensions between the Earps and the Cowboys heats up and eventually leads to the infamous showdown at the O.K. Corral. Action-packed and fast-moving, <em>Tombstone </em>is definitely a Western that suits modern moviegoers&#8217; tastes. Not to mention, it has some of the best mustachery in the history of cinema.</p>
1980
+ <p><em>Best line: &#8220;I&#8217;m your Huckleberry.&#8221;</em></p>
1981
+ <h3><a href="http://www.amazon.com/gp/product/B006LMEDOA/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B006LMEDOA&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>The Outlaw Josey Wales</strong></a></h3>
1982
+ <p><a href="http://www.amazon.com/gp/product/B006LMEDOA/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B006LMEDOA&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter wp-image-33702 size-full" src="https://content.artofmanliness.com/uploads//2013/06/wales.jpg" alt="outlaw nosey wales old western film clint eastwood with guns " width="500" height="518"/></a></p>
1983
+ <p>Directing and starring Clint Eastwood. It&#8217;s about a man named Josey Wales who lost home and family during the Civil War to a band of pro-Union Jayhawkers. Driven by revenge, he joins a posse of pro-Confederate soldiers so he can find the men who destroyed the things he loved. The Civil War ends and the band of Confederate fighters surrender. But not Josey. Revenge, sorrow, forgiveness, betrayal  love, family, and honor  take center stage in this Eastwood classic.</p>
1984
+ <p><em>Best line: &#8220;Dyin&#8217; ain&#8217;t much of a living, boy.&#8221;</em></p>
1985
+ <p><em>Editor&#8217;s Note: I added this one after initial publication. I can&#8217;t believe I forgot to put it in! Lots of other great suggestions in the comments too, by the way.</em></p>
1986
+ <h3><a href="http://www.amazon.com/gp/product/B0013IFH6U/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0013IFH6U&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>The Assassination of Jesse James by the Coward Robert Ford</strong></a></h3>
1987
+ <p><a href="http://www.amazon.com/gp/product/B0013IFH6U/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0013IFH6U&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter size-full wp-image-33689" src="http://content.artofmanliness.com/uploads//2013/06/jessejames.jpg" alt="jessejames" width="500" height="332"/></a></p>
1988
+ <p>This 2007 film directed by Andrew Dominik is the film version of the 1983 novel of the same name. Brad Pitt stars as Jesse James with Casey Affleck taking on the role of his killer, Robert Ford. When James&#8217; gang plans a train robbery in Missouri, Ford makes multiple attempts to join the gang. Ultimately, Ford gets rejected by James, and so sets out to get revenge. The film is star-studded, but surprisingly had lackluster results at the box office despite excellent reviews, with one critic even saying that it is &#8220;one of the most wrongly neglected masterpieces of its era.&#8221;</p>
1989
+ <p><em>Best line: &#8220;It seems to me if you have something to confess, you outta be right and you spit it out now.&#8221;</em></p>
1990
+ <h3><a href="http://www.amazon.com/gp/product/B000IZ1HRM/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000IZ1HRM&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><strong>The Shootist</strong></a></h3>
1991
+ <p><a href="http://www.amazon.com/gp/product/B000IZ1HRM/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B000IZ1HRM&amp;linkCode=as2&amp;tag=stucosuccess-20" target="_blank" data-wpel-link="external" rel="external noopener noreferrer"><img class="aligncenter" src="http://content.artofmanliness.com/uploads//2013/05/shootist.jpg" alt="shootist old western movie film john wayne on ground with gun" width="500" height="368"/></a></p>
1992
+ <p>Nobody wants to die alone. Especially gunslingers. In a haunting portrayal that foreshadowed his own fate, John Wayne plays J.B. Books, an aging gunfighter dying of cancer who resigns himself to live out his days in private. But skeletons from his past prevent him from fading away, so he decides to go down the only way he knows how – with his six-shooter blazing.</p>
1993
+ <p><em>Best line: “I won’t be wronged. I won’t be insulted. I won’t be laid a-hand on. I don’t do these things to other people, and I require the same from them.”</em></p>
1994
+ <p><em><strong>What do you think are the best Western films of all time? Share your picks with us in the comments!</strong></em></p>
1995
+ <div id="tiEmbedPlayer" data-type="large"></div>
1996
+ </div>
1997
+ <footer></footer>
1998
+ </div>
1999
+ <meta itemscope itemprop="mainEntityOfPage" itemType="https://schema.org/WebPage" itemid="http://www.artofmanliness.com/2013/06/04/best-western-movies/"/>
2000
+ <meta itemprop="datePublished" content="2013-06-04"/>
2001
+ <meta itemprop="dateModified" content="2016-06-16"/>
2002
+ <div itemprop="image" itemscope itemtype="https://schema.org/ImageObject">
2003
+ <meta itemprop="url" content="https://content.artofmanliness.com/uploads/2013/06/westerns12.jpg">
2004
+ <meta itemprop="width" content="550">
2005
+ <meta itemprop="height" content="309">
2006
+ </div>
2007
+ <div itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
2008
+ <meta itemprop="name" content="The Art of Manliness">
2009
+ <div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">
2010
+ <meta itemprop="url" content="http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/images/richlogo.png">
2011
+ <meta itemprop="width" content="279">
2012
+ <meta itemprop="height" content="60">
2013
+ </div>
2014
+ </div>
2015
+ </article>
2016
+ <div id="next-previous" class="navigation clearfix">
2017
+ <div class="nav-previous alignleft">
2018
+ <a href="http://www.artofmanliness.com/2013/06/04/last-day-to-enter-the-huckberry-x-art-of-manliness-fathers-day-giveaway/" rel="prev" data-wpel-link="internal">Previous Post</a>
2019
+ </div>
2020
+ <div class="nav-next alignright">
2021
+ <a href="http://www.artofmanliness.com/2013/06/05/9-rules-for-starting-your-own-farm/" rel="next" data-wpel-link="internal">Next Post</a>
2022
+ </div>
2023
+ </div> <div class="addthis_relatedposts_inline_aumq"></div>
2024
+ <hr/>
2025
+ <section class="disqus-comments">
2026
+ <p class="ss-chat disqus-show">Show <span class="comments-count"></span>Comments</p>
2027
+ <div id="disqus_thread"></div>
2028
+ <script type="text/javascript">
2029
+ var disqus_shortname = 'artofmanliness';
2030
+ (function() {
2031
+ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
2032
+ dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
2033
+ (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
2034
+ })();
2035
+
2036
+ (function () {
2037
+ var s = document.createElement('script'); s.async = true;
2038
+ s.type = 'text/javascript';
2039
+ s.src = '//' + disqus_shortname + '.disqus.com/count.js';
2040
+ (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
2041
+ }());
2042
+ </script>
2043
+ </section>
2044
+ <div id="post-3lift-ad"></div>
2045
+ </div>
2046
+ </div>
2047
+ </div>
2048
+ </div>
2049
+ <div class="builder-module-block-outer-wrapper builder-module-sidebar-outer-wrapper builder-module-column-2-outer-wrapper right clearfix">
2050
+ <div class="builder-module-block builder-module-sidebar builder-module-column-2 builder-module-sidebar-1-right builder-module-sidebar-with-element sidebar right clearfix">
2051
+ <div class="widget-wrapper widget-wrapper-single single widget-wrapper-1 clearfix">
2052
+ <div class="widget-background-wrapper" id="aomsidebars_1-19-background-wrapper"><div class="widget widget-1 widget-top clearfix widget_aomsidebars_1" id="aomsidebars_1-19"><section class="subscribe clearfix">
2053
+ <div class="subscribe-wrapper">
2054
+ <div class="subscribe-wrapper2">
2055
+ <header><img src="http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/images/subscribe-header.jpg"/></header>
2056
+ <form action="//artofmanliness.us10.list-manage.com/subscribe/post?u=de21c7d1d490ef67077051042&amp;id=c6b2b666bb" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
2057
+ <input style="border: 1px solid #333; width: 90%;" type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
2058
+ <input name="action" type="hidden" value="addmailchimpemail">
2059
+ <div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_de21c7d1d490ef67077051042_c6b2b666bb" tabindex="-1" value=""></div>
2060
+ <table style="background: transparent; border: 0px;">
2061
+ <tbody>
2062
+ <tr>
2063
+ <td><input type="checkbox" checked value="1" name="group[1][1]" id="mce-group[1]-1-0"/><label style="float: left;"> Daily</label></td>
2064
+ <td><input type="checkbox" value="2" name="group[1][2]" id="mce-group[1]-1-1"/><label style="float: left;"> Weekly</label></td>
2065
+ <td><input style="padding: .5em 1em;" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></td>
2066
+ </tr>
2067
+ </tbody>
2068
+ </table>
2069
+ </form>
2070
+ <footer><img src="http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/images/subscribe-footer.jpg"/></footer>
2071
+ <div id="mce-responses" class="clear">
2072
+ <div class="response" id="mce-error-response" style="display:none; color: #fff; line-height: 120%; padding: 20px;"></div>
2073
+ <div class="response" id="mce-success-response" style="display:none; color: #fff; line-height: 120%; padding: 20px;"></div>
2074
+ </div>
2075
+ </div>
2076
+ </div>
2077
+ </section>
2078
+ </div></div><div class="widget-background-wrapper" id="text-38-background-wrapper"><div class="widget widget-2 widget-middle clearfix widget_text" id="text-38"> <div class="textwidget"><center><div id="azk14798"></div></center></div>
2079
+ </div></div><div class="widget-background-wrapper" id="it_widget_content-48-background-wrapper"><div class="widget widget-3 widget-middle clearfix widget-it-content" id="it_widget_content-48"> <div class="widget-content clearfix">
2080
+ <p><a href="http://www.artofmanliness.com/podcast/" target="_blank" data-wpel-link="internal"><img class="aligncenter size-full wp-image-57197" src="https://content.artofmanliness.com/uploads//2016/06/aom-podcast-big-button.jpg" alt="aom-podcast-big-button" width="300" height="200"/></a></p>
2081
+ </div>
2082
+ </div></div><div class="widget-background-wrapper" id="it_widget_content-11-background-wrapper"><div class="widget widget-4 widget-middle clearfix widget-it-content" id="it_widget_content-11"> <div class="widget-content clearfix">
2083
+ <div id="gpt-ad-right_side_1"></div>
2084
+ </div>
2085
+ </div></div><div class="widget-background-wrapper" id="ithemes-billboard-9-background-wrapper"><div class="widget widget-5 widget-middle clearfix widget_ithemes-billboard" id="ithemes-billboard-9"><div class="ithemes-billboard ithemes-billboard-random-post" style="text-align:center;">
2086
+ <a href="http://www.artofmanliness.com/?random&amp;random_post_type=post" title="Random Post" style="text-decoration: none;" data-wpel-link="internal">
2087
+ <img src="http://www.artofmanliness.com/wp-content/uploads/2015/07/random_post.jpg" alt="Random Post" style="max-width: 100%; height: auto;"/>
2088
+ </a>
2089
+ </div>
2090
+ </div></div><div class="widget-background-wrapper" id="ithemes-billboard-10-background-wrapper"><div class="widget widget-6 widget-middle clearfix widget_ithemes-billboard" id="ithemes-billboard-10"><div class="ithemes-billboard ithemes-billboard-podcast" style="text-align:center;">
2091
+ <a href="http://www.artofmanliness.com/category/podcast" title="Podcast" style="text-decoration: none;" data-wpel-link="internal">
2092
+ <img src="http://www.artofmanliness.com/wp-content/uploads/2015/07/podcast1.jpg" alt="Podcast" style="max-width: 100%; height: auto;"/>
2093
+ </a>
2094
+ </div>
2095
+ </div></div><div class="widget-background-wrapper" id="ithemes-billboard-26-background-wrapper"><div class="widget widget-7 widget-middle clearfix widget_ithemes-billboard" id="ithemes-billboard-26"><div class="ithemes-billboard ithemes-billboard-man-knowledge" style="text-align:center;">
2096
+ <a href="http://www.artofmanliness.com/man-knowledge" title="Man Knowledge" style="text-decoration: none;" data-wpel-link="internal">
2097
+ <img src="http://www.artofmanliness.com/wp-content/uploads/2015/07/man-knowledge.jpg" alt="Man Knowledge" style="max-width: 100%; height: auto;"/>
2098
+ </a>
2099
+ </div>
2100
+ </div></div><div class="widget-background-wrapper" id="it_widget_content-12-background-wrapper"><div class="widget widget-8 widget-middle clearfix widget-it-content" id="it_widget_content-12"> <div class="widget-content clearfix">
2101
+ <div class="last-sidebar-ad" id="gpt-ad-right_side_2"></div>
2102
+ </div>
2103
+ </div></div><div class="widget-background-wrapper" id="text-76-background-wrapper"><div class="widget widget-9 widget-middle clearfix widget_text" id="text-76"> <div class="textwidget"><center><div id="azk37352"></div></center></div>
2104
+ </div></div><div class="widget-background-wrapper" id="text-79-background-wrapper"><div class="widget widget-10 widget-middle clearfix widget_text" id="text-79"> <div class="textwidget"><center><div id="azk74716"></div></center></div>
2105
+ </div></div><div class="widget-background-wrapper" id="text-47-background-wrapper"><div class="widget widget-11 widget-middle clearfix widget_text" id="text-47"> <div class="textwidget"><p style="text-align:center;"><a href="//www.artofmanliness.com/2015/09/28/100-skills-every-man-should-know/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer"><img src="https://content.artofmanliness.com/uploads/images/SKILLSpop.jpg"/></a>
2106
+ </p>
2107
+ <p style="text-align:center;"><a href="//www.artofmanliness.com/2015/02/05/how-to-develop-the-situational-awareness-of-jason-bourne/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer"><img src="https://content.artofmanliness.com/uploads/images/bourne.png"/></a>
2108
+ </p>
2109
+ <p style="text-align:center;">
2110
+ <a href="//www.artofmanliness.com/2013/01/18/how-to-increase-testosterone-naturally/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer"><img src="https://content.artofmanliness.com/uploads/images/testosterone.png"/></a>
2111
+ </p>
2112
+ <p style="text-align:center;">
2113
+ <a href="//www.artofmanliness.com/2014/08/05/undo-the-damage-of-sitting/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer"><img src="https://content.artofmanliness.com/uploads/images/sitting.png"/></a>
2114
+ </p>
2115
+ <p style="text-align:center;">
2116
+ <a href="//www.artofmanliness.com/2008/05/14/100-must-read-books-the-essential-mans-library/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer"><img src="https://content.artofmanliness.com/uploads/images/books.png"/></a>
2117
+ </p>
2118
+ <p style="text-align:center;">
2119
+ <a href="http://www.artofmanliness.com/2016/01/25/the-ultimate-list-of-hobbies-for-men-75-ideas-for-your-free-time/" data-wpel-link="internal"><img src="http://content.artofmanliness.com/uploads/images/hobbiesformen.jpg"/></a>
2120
+ </p>
2121
+ <p style="text-align:center;">
2122
+ <a href="//www.artofmanliness.com/2015/08/05/the-prisoner-workout/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer"><img src="https://content.artofmanliness.com/uploads/images/prisoner_workout.jpg"/><br/>
2123
+ </a></p>
2124
+ </div>
2125
+ </div></div><div class="widget-background-wrapper" id="text-59-background-wrapper"><div class="widget widget-12 widget-middle clearfix widget_text" id="text-59"> <div class="textwidget">
2126
+ <div class="addthis_recommended_vertical"></div></div>
2127
+ </div></div><div class="widget-background-wrapper" id="text-80-background-wrapper"><div class="widget widget-13 widget-bottom clearfix widget_text" id="text-80"> <div class="textwidget"><center><iframe width="300" height="300" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/180830346&amp;auto_play=false&amp;hide_related=false&amp;show_comments=false&amp;show_user=false&amp;show_reposts=false&amp;visual=true"></iframe></center></div>
2128
+ </div></div></div>
2129
+ </div>
2130
+ </div>
2131
+ </div>
2132
+ </div>
2133
+ </div>
2134
+ <div class="builder-module-background-wrapper builder-module-navigation-background-wrapper builder-module-5-background-wrapper builder-module-navigation-1-background-wrapper builder-module-middle-background-wrapper builder-module-navigation-last-background-wrapper builder-module-before-footer-background-wrapper builder-module-after-content-background-wrapper default-module-style-background-wrapper" id="builder-module-539fafcc446b0-background-wrapper">
2135
+ <div class="builder-module-outer-wrapper builder-module-navigation-outer-wrapper builder-module-5-outer-wrapper builder-module-navigation-1-outer-wrapper builder-module-middle-outer-wrapper builder-module-navigation-last-outer-wrapper builder-module-before-footer-outer-wrapper builder-module-after-content-outer-wrapper default-module-style-outer-wrapper" id="builder-module-539fafcc446b0-outer-wrapper">
2136
+ <div class="builder-module builder-module-navigation builder-module-5 builder-module-navigation-1 builder-module-middle builder-module-navigation-last builder-module-before-footer builder-module-after-content default-module-style clearfix builder-module-navigation-custom-menu builder-module-navigation-custom-menu-id-290" id="builder-module-539fafcc446b0">
2137
+ <div class="builder-module-block-outer-wrapper builder-module-element-outer-wrapper builder-module-column-1-outer-wrapper single clearfix">
2138
+ <div class="builder-module-block builder-module-element builder-module-column-1">
2139
+ <ul id="menu-footer-menu" class="menu"><li id="menu-item-41119" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41119"><a href="http://www.artofmanliness.com/contact/" data-wpel-link="internal">Contact</a></li>
2140
+ <li id="menu-item-42105" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-42105"><a href="http://www.artofmanliness.com/advertise-on-the-art-of-manliness/" data-wpel-link="internal">Advertise</a></li>
2141
+ <li id="menu-item-41118" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41118"><a href="http://www.artofmanliness.com/comment-policy/" data-wpel-link="internal">Comment Policy</a></li>
2142
+ <li id="menu-item-41120" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-41120"><a href="http://www.artofmanliness.com/privacy-policy/" data-wpel-link="internal">Legal</a></li>
2143
+ </ul>
2144
+ </div>
2145
+ </div>
2146
+ </div>
2147
+ </div>
2148
+ </div>
2149
+ <div class="builder-module-background-wrapper builder-module-footer-background-wrapper builder-module-6-background-wrapper builder-module-footer-1-background-wrapper builder-module-bottom-background-wrapper builder-module-last-background-wrapper builder-module-footer-last-background-wrapper builder-module-after-navigation-background-wrapper default-module-style-background-wrapper" id="builder-module-536c1ae9055f5-background-wrapper">
2150
+ <div class="builder-module-outer-wrapper builder-module-footer-outer-wrapper builder-module-6-outer-wrapper builder-module-footer-1-outer-wrapper builder-module-bottom-outer-wrapper builder-module-last-outer-wrapper builder-module-footer-last-outer-wrapper builder-module-after-navigation-outer-wrapper default-module-style-outer-wrapper" id="builder-module-536c1ae9055f5-outer-wrapper">
2151
+ <div class="builder-module builder-module-footer builder-module-6 builder-module-footer-1 builder-module-bottom builder-module-last builder-module-footer-last builder-module-after-navigation default-module-style clearfix" id="builder-module-536c1ae9055f5">
2152
+ <div class="builder-module-block-outer-wrapper builder-module-element-outer-wrapper builder-module-column-1-outer-wrapper single clearfix">
2153
+ <div class="builder-module-block builder-module-element builder-module-column-1 clearfix">
2154
+ <div class="alignleft">
2155
+ <strong>The Art of Manliness</strong><br/>
2156
+ Copyright &copy; 2016 All Rights Reserved </div>
2157
+ <div class="alignright">
2158
+ Built with <a href="http://ithemes.com/member/go.php?r=4328&amp;i=l37" title="iThemes Builder" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">iThemes Builder</a> on <a href="http://wordpress.org" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">WordPress</a><br/>by <a href="http://www.screenfour.com" target="_blank" data-wpel-link="external" rel="external noopener noreferrer">Screen Four</a> </div>
2159
+ <script type="text/javascript" src="http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/js/gpt.js?ver=1.8"></script>
2160
+ <script type="text/javascript">
2161
+ (function($) {
2162
+ var $window = $(window),
2163
+ $topAdContainer = $('#gpt-ad-top').parent(),
2164
+ $rightSide1 = $('#gpt-ad-right_side_1'),
2165
+ $rightSide2 = $('#gpt-ad-right_side_2'),
2166
+ rightSide1Loaded = false,
2167
+ rightSide2Loaded = false;
2168
+
2169
+ function checkOffset($el) {
2170
+ return $el.offset().top - $window.height() - $window.scrollTop() < 1;
2171
+ }
2172
+
2173
+ function setSidebarAd(size, div, position, mappings) {
2174
+ googletag.cmd.push(function() {
2175
+ var mapping = googletag.sizeMapping();
2176
+ var slot = googletag.defineSlot(UD_GPT.ad_path, size, div)
2177
+ .setTargeting( 's1', 'content-feature' )
2178
+ .setTargeting( 'page_type', 'content-feature' )
2179
+ .setTargeting( 'category', 'movies') .setTargeting( 'article_id', '33566' ) .addService( googletag.pubads() );
2180
+
2181
+ mappings.forEach(function(map) {
2182
+ mapping.addSize( map[0], map[1] );
2183
+ });
2184
+ slot.defineSizeMapping( mapping.build() );
2185
+
2186
+ googletag.display(div);
2187
+ googletag.pubads().setTargeting('pos', position).refresh([slot]);
2188
+ });
2189
+ }
2190
+
2191
+ function lazyLoadSidebarAds() {
2192
+ if (rightSide1Loaded && rightSide2Loaded) {
2193
+ $window.off('scroll', lazyLoadSidebarAds);
2194
+ }
2195
+
2196
+ // Where does this width come from?
2197
+ if (width > 1000) {
2198
+ if ($rightSide1.length && !rightSide1Loaded && checkOffset($rightSide1)) {
2199
+ rightSide1Loaded = true;
2200
+ setSidebarAd([300, 250], 'gpt-ad-right_side_1', 'Right_Side_1', UD_GPT.mappings.side_square);
2201
+ }
2202
+
2203
+ if ($rightSide2.length && !rightSide2Loaded && checkOffset($rightSide2)) {
2204
+ rightSide2Loaded = true;
2205
+ setSidebarAd([[300, 600], [160, 600]], 'gpt-ad-right_side_2', 'Right_Side_2', UD_GPT.mappings.side_variable);
2206
+ }
2207
+ } else {
2208
+ rightSide1Loaded = true;
2209
+ rightSide2Loaded = true;
2210
+ }
2211
+ }
2212
+
2213
+ $topAdContainer.bind('DOMSubtreeModified', function() {
2214
+ if ($(this).height()) {
2215
+ lazyLoadSidebarAds();
2216
+ $window.scroll(lazyLoadSidebarAds);
2217
+ }
2218
+ });
2219
+ })(jQuery);
2220
+ </script>
2221
+ <script type="text/javascript" src="http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/js/post-scripts.js?v=1.4.5"></script>
2222
+ <script>
2223
+ if ( 'undefined' !== typeof window.navigator.serviceWorker ) {
2224
+ window.navigator.serviceWorker.getRegistration("http://www.artofmanliness.com/wp-content/plugins/roost-for-bloggers/includes/chrome/").then( function( registration ) { if ( 'undefined' !== typeof registration && registration.scope === 'http://www.artofmanliness.com/wp-content/plugins/roost-for-bloggers/includes/chrome/' ) { registration.unregister(); navigator.serviceWorker.register("/?roost=true&roost_action=worker", {scope: "/"}) } } );
2225
+ }
2226
+ </script>
2227
+ <script src="//cdn.goroost.com/roostjs/888feefaf19f456a8774857e8681e945" async></script>
2228
+ <script>
2229
+ var _roost = _roost || [];
2230
+ _roost.push( [ 'autoprompt', false ] );
2231
+ _roost.push( [ 'minvisits', "2" ] );
2232
+ </script>
2233
+
2234
+ <div id="shiftnav-toggle-main" class="shiftnav-toggle-main-align-center shiftnav-toggle-edge-left shiftnav-toggle-icon-x shiftnav-toggle-main-align-center shiftnav-toggle-edge-left shiftnav-toggle-icon-x" data-shiftnav-target="shiftnav-main"><span id="shiftnav-toggle-main-button" class="shiftnav-toggle shiftnav-toggle-shiftnav-main shiftnav-toggle-burger" data-shiftnav-target="shiftnav-main"><i class="fa fa-bars"></i></span> <span class="shiftnav-main-toggle-content shiftnav-toggle-main-block"></span> <span class="shiftnav-main-toggle-content-after">
2235
+
2236
+ <a class="shiftnav-searchbar-toggle shiftnav-toggle-main-block shiftnav-toggle-main-ontop" data-wpel-link="internal"><i class="fa fa-search"></i></a>
2237
+
2238
+ <div class="shiftnav-searchbar-drop">
2239
+ <form role="search" method="get" class="shiftnav-searchform" action="http://www.artofmanliness.com/">
2240
+ <input type="text" placeholder="Search..." value="" name="s" class="shiftnav-search-input"/>
2241
+ <input type="submit" class="shiftnav-search-submit" value="&#xf002;"/>
2242
+ </form>
2243
+ </div>
2244
+
2245
+ </span>
2246
+ </div>
2247
+
2248
+
2249
+ <div class="shiftnav shiftnav-nojs shiftnav-left-edge shiftnav-skin-custom shiftnav-transition-standard" id="shiftnav-main" data-shiftnav-id="shiftnav-main">
2250
+ <div class="shiftnav-inner">
2251
+ <ul id="menu-shiftnav" class="shiftnav-menu shiftnav-targets-default shiftnav-targets-text-default shiftnav-targets-icon-default"><li id="menu-item-45022" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-45022 shiftnav-depth-0"><a class="shiftnav-target" href="http://www.artofmanliness.com/category/a-mans-life/" data-wpel-link="internal">A Man&#8217;s Life</a></li><li id="menu-item-45029" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-45029 shiftnav-depth-0"><a class="shiftnav-target" href="http://www.artofmanliness.com/category/dress-grooming/" data-wpel-link="internal">Dress &#038; Grooming</a></li><li id="menu-item-45061" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-45061 shiftnav-depth-0"><a class="shiftnav-target" href="http://www.artofmanliness.com/category/manly-skills/" data-wpel-link="internal">Manly Skills</a></li><li id="menu-item-53344" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-53344 shiftnav-depth-0"><a class="shiftnav-target" href="http://www.artofmanliness.com/category/relationships-family/" data-wpel-link="internal">Relationships &#038; Family</a></li><li id="menu-item-45033" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-45033 shiftnav-depth-0"><a class="shiftnav-target" href="http://www.artofmanliness.com/category/health-sports/" data-wpel-link="internal">Health &#038; Sports</a></li><li id="menu-item-45067" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45067 shiftnav-depth-0"><a class="shiftnav-target" href="https://store.artofmanliness.com/store/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Shop</a></li><li id="menu-item-45068" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-45068 shiftnav-sub-accordion shiftnav-depth-0"><span class="shiftnav-target">More</span><span class="shiftnav-submenu-activation shiftnav-submenu-activation-open"><i class="fa fa-chevron-down"></i></span><span class="shiftnav-submenu-activation shiftnav-submenu-activation-close"><i class="fa fa-chevron-up"></i></span>
2252
+ <ul class="sub-menu sub-menu-1">
2253
+ <li id="menu-item-58870" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-58870 shiftnav-depth-1"><a class="shiftnav-target" href="http://www.artofmanliness.com/category/travel-leisure/" data-wpel-link="internal">Travel &#038; Leisure</a></li><li id="menu-item-45070" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45070 shiftnav-depth-1"><a class="shiftnav-target" href="//www.artofmanliness.com/podcast" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Podcast</a></li><li id="menu-item-45072" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45072 shiftnav-depth-1"><a class="shiftnav-target" href="//www.artofmanliness.com/about-2/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">About</a></li><li id="menu-item-45069" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45069 shiftnav-depth-1"><a class="shiftnav-target" href="//www.artofmanliness.com/archives/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Archives</a></li><li id="menu-item-45071" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45071 shiftnav-depth-1"><a class="shiftnav-target" href="https://www.youtube.com/user/artofmanliness/videos" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Videos</a></li><li id="menu-item-45073" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45073 shiftnav-depth-1"><a class="shiftnav-target" href="http://community.artofmanliness.com/" data-wpel-link="external" target="_blank" rel="external noopener noreferrer">Community</a></li><li class="shiftnav-retract"><a class="shiftnav-target" data-wpel-link="internal"><i class="fa fa-chevron-left"></i> Back</a></li></ul>
2254
+ </li></ul> </div>
2255
+ </div>
2256
+ <script type="text/javascript" src="//s.skimresources.com/js/54126X1301668.skimlinks.js"></script>
2257
+ <script type='text/javascript' src='http://www.artofmanliness.com/wp-includes/js/comment-reply.min.js?ver=4.6.1'></script>
2258
+ <script type='text/javascript' src='http://www.artofmanliness.com/wp-content/plugins/aesop-story-engine/public/assets/js/ai-core.min.js?ver=1.9.1'></script>
2259
+ <script type='text/javascript'>
2260
+ /* <![CDATA[ */
2261
+ var shiftnav_data = {"shift_body":"off","shift_body_wrapper":"","lock_body":"on","lock_body_x":"off","swipe_close":"on","swipe_open":"off","swipe_tolerance_x":"150","swipe_tolerance_y":"60","swipe_edge_proximity":"80","open_current":"off","collapse_accordions":"off","scroll_panel":"on","breakpoint":"1001","touch_off_close":"on","scroll_offset":"100","disable_transforms":"off"};
2262
+ /* ]]> */
2263
+ </script>
2264
+ <script type='text/javascript' src='http://www.artofmanliness.com/wp-content/plugins/shiftnav-pro/assets/js/shiftnav.min.js?ver=1.3.0.1.4'></script>
2265
+ <script type='text/javascript' src='http://www.artofmanliness.com/wp-content/themes/BuilderChild-aom2/js/combined.min.js?ver=1.0.1'></script>
2266
+ <script type='text/javascript' src='http://www.artofmanliness.com/wp-includes/js/wp-embed.min.js?ver=4.6.1'></script>
2267
+
2268
+
2269
+ <script type="text/javascript">
2270
+ jQuery(document).ready(function($) {
2271
+ jQuery(".main").fitVids();
2272
+ });
2273
+ </script>
2274
+ <script type='text/javascript' src='//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';fnames[3]='MMERGE3';ftypes[3]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script>
2275
+ <script type="text/javascript">
2276
+ jQuery(document).ready(function($) {
2277
+ if( $('#home-3lift-ad').length > 0 ) {
2278
+ var adscript = document.createElement( 'script' );
2279
+ adscript.type = 'text/javascript';
2280
+ adscript.src = 'http://ib.3lift.com/ttj?inv_code=artofmanliness_main';
2281
+ $('#home-3lift-ad').append(adscript);
2282
+ }
2283
+ if( $('#category-3lift-ad').length > 0 ) {
2284
+ var adscript = document.createElement( 'script' );
2285
+ adscript.type = 'text/javascript';
2286
+ adscript.src = 'https://ib.3lift.com/ttj?inv_code=artofmanliness_category_feed';
2287
+ $('#category-3lift-ad').append(adscript);
2288
+ }
2289
+ if( $('#post-3lift-ad').length > 0 ) {
2290
+ var adscript = document.createElement( 'script' );
2291
+ adscript.type = 'text/javascript';
2292
+ adscript.src = 'https://ib.3lift.com/ttj?inv_code=artofmanliness_article_sub';
2293
+ $('#post-3lift-ad').append(adscript);
2294
+ }
2295
+ });
2296
+ </script>
2297
+ </div>
2298
+ </div>
2299
+ </div>
2300
+ </div>
2301
+ </div>
2302
+ </div>
2303
+ </div>
2304
+ </div>
2305
+
2306
+ <script>
2307
+ jQuery(document).foundation();
2308
+ </script>
2309
+
2310
+ <script>
2311
+ var _comscore = _comscore || [];
2312
+ _comscore.push({ c1: "2", c2: "17689855" });
2313
+ (function() {
2314
+ var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
2315
+ s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
2316
+ el.parentNode.insertBefore(s, el);
2317
+ })();
2318
+ </script>
2319
+ <noscript>
2320
+ <img src="http://b.scorecardresearch.com/p?c1=2&c2=17689855&cv=2.0&cj=1"/>
2321
+ </noscript>
2322
+
2323
+ <script type="text/javascript">
2324
+ var _sf_async_config={uid:10448,domain:"artofmanliness.com"};
2325
+ _sf_async_config.sections = "US Politics";
2326
+ _sf_async_config.authors = "Brett & Kate McKay, Antonio Centeno";
2327
+ (function(){
2328
+ function loadChartbeat() {
2329
+ window._sf_endpt=(new Date()).getTime();
2330
+ var e = document.createElement('script');
2331
+
2332
+ e.setAttribute('language', 'javascript');
2333
+ e.setAttribute('type', 'text/javascript');
2334
+ e.setAttribute('src',
2335
+ (("https:" == document.location.protocol) ? "https://s3.amazonaws.com/" : "http://") +
2336
+ "static.chartbeat.com/js/chartbeat.js");
2337
+ document.body.appendChild(e);
2338
+ }
2339
+ var oldonload = window.onload;
2340
+ window.onload = (typeof window.onload != 'function') ?
2341
+ loadChartbeat : function() { oldonload(); loadChartbeat(); };
2342
+ })();
2343
+ </script>
2344
+ <script id="urbandaddy-network" src="//www.urbandaddy.network/static/artofmanliness.js"></script>
2345
+
2346
+ <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-55c4fabb7a32bb5a"></script>
2347
+ <script type="text/javascript">
2348
+ amzn_assoc_ad_type = "link_enhancement_widget";
2349
+ amzn_assoc_tracking_id = "stucosuccess-20";
2350
+ amzn_assoc_linkid = "KQP45LHKNGMW4YI3";
2351
+ amzn_assoc_placement = "";
2352
+ amzn_assoc_marketplace = "amazon";
2353
+ amzn_assoc_region = "US";
2354
+ </script>
2355
+ <script src="//z-na.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&Operation=GetScript&ID=OneJS&WS=1&MarketPlace=US"></script>
2356
+ <script>var om56a3d117e2c25,om56a3d117e2c25_poll=function(){var r=0;return function(n,l){clearInterval(r),r=setInterval(n,l)}}();!function(e,t,n){if(e.getElementById(n)){om56a3d117e2c25_poll(function(){if(window['om_loaded']){if(!om56a3d117e2c25){om56a3d117e2c25=new OptinMonsterApp();return om56a3d117e2c25.init({"s":"14888.56a3d117e2c25","staging":0,"dev":0,"beta":0});}}},25);return;}var d=false,o=e.createElement(t);o.id=n,o.src="//a.optnmnstr.com/app/js/api.min.js",o.onload=o.onreadystatechange=function(){if(!d){if(!this.readyState||this.readyState==="loaded"||this.readyState==="complete"){try{d=om_loaded=true;om56a3d117e2c25=new OptinMonsterApp();om56a3d117e2c25.init({"s":"14888.56a3d117e2c25","staging":0,"dev":0,"beta":0});o.onload=o.onreadystatechange=null;}catch(t){}}}};(document.getElementsByTagName("head")[0]||document.documentElement).appendChild(o)}(document,"script","omapi-script");</script>
2357
+ </body>
2358
+ </html>