<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	 xmlns:friends="wordpress-plugin-friends:feed-additions:1" >

<channel>
	<title>beer &#8211; Scott&#039;s Blog</title>
	<atom:link href="https://alfter.us/category/beer-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://alfter.us</link>
	<description>Things that interest me</description>
	<lastBuildDate>Fri, 26 Jun 2026 15:09:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.2</generator>
<site xmlns="com-wordpress:feed-additions:1">230089306</site>	<item>
		<title>Run Windows apps in a browser with Wine and Docker</title>
		<link>https://alfter.us/2026/06/26/run-windows-apps-in-a-browser-with-wine-and-docker/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Fri, 26 Jun 2026 15:07:37 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[brewing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">https://alfter.us/?p=51410</guid>

					<description><![CDATA[ProMash is a program I&#8217;ve used to manage beer recipes for over 20 years. There was only ever a Windows version published, but I mostly ran it under Linux with Wine. I had the entire program directory (with recipes, brewing sessions, etc.) checked into checked into Git so I could pull it down on whatever [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">ProMash is a program I&#8217;ve used to manage beer recipes for over 20 years.  There was only ever a Windows version published, but I mostly ran it under Linux with <a href="https://www.winehq.org/">Wine</a>.  I had the entire program directory (with recipes, brewing sessions, etc.) checked into checked into Git so I could pull it down on whatever computer I was using at the time and run it.</p>



<p class="wp-block-paragraph">A while back, I Dockerized my home server.  One of the neat tricks I found it could do was run graphical Linux apps through a web browser: <a href="https://docs.linuxserver.io/images/docker-calibre/">Calibre</a>, <a href="https://github.com/mikenye/docker-picard">Picard</a>, etc. I then got the idea to try containerizing ProMash.  It can run under Wine and Wine runs under Linux, so it should work&#8230;right?</p>



<p class="wp-block-paragraph">Turns out it works pretty well. Start with this Dockerfile, which adds Wine to the linuxserver.io base image and adds the program to be run:</p>



<pre class="wp-block-code"><code>FROM ghcr.io/linuxserver/baseimage-selkies:arch
RUN pacman -Syu || true &amp;&amp; pacman -S --noconfirm wine wine-gecko &amp;&amp; yes | pacman -Scc
ADD --chown=911:911 . /config/promash
COPY /root /</code></pre>



<p class="wp-block-paragraph">For an app that doesn&#8217;t need to be installed (just run from a random directory), it&#8217;s enough to just make it visible within the container and add a config file to tell the container to launch it.  First, docker-compose.yml:</p>



<pre class="wp-block-code"><code>services:
  promash:
    build: .
    container_name: promash
    restart: unless-stopped
    environment:
      CUSTOM_PORT: 8080
      CUSTOM_HTTPS_PORT: 8081
    networks:
      - www
    volumes:
      - promash-data:/config/promash
    labels:
      caddy: promash.alfter.us
      #caddy.basic_auth.salfter: "$PASSWD"
      caddy.import: secure *
      caddy.reverse_proxy: promash.www:8080
      caddy.log.output: discard
          
networks:
  www:
    name: www
    external: true    
    
volumes:
  promash-data:
    name: promash-data
    external: true</code></pre>



<p class="wp-block-paragraph">This is set up to use <a href="https://github.com/lucaslorentz/caddy-docker-proxy">caddy-docker-proxy</a> and to control access to ProMash with an <a href="https://github.com/authelia/authelia">Authelia</a> SSO instance (<code>caddy.import: secure *</code>), but these are easily replaced with whatever proxy option you prefer.  The ProMash directory within the container gets written out to a named volume so my changes don&#8217;t get lost and my recipes are easily backed up.</p>



<p class="wp-block-paragraph">One more file is needed to tell the container how to launch your program.  root/defaults/autostart should look something like this:</p>



<pre class="wp-block-code"><code>(cd /config/promash &amp;&amp; wine ProMash.exe)</code></pre>



<p class="wp-block-paragraph">These three files were added to my ProMash repo, which was then checked out onto my home server and launched.  This is what it looks like in the browser:</p>



<figure class="wp-block-image size-full"><a href="https://alfter.us/wp-content/uploads/2026/06/image-1.png"><img fetchpriority="high" decoding="async" width="875" height="734" src="https://alfter.us/wp-content/uploads/2026/06/image-1.png" alt="" class="wp-image-51412" srcset="https://alfter.us/wp-content/uploads/2026/06/image-1.png 875w, https://alfter.us/wp-content/uploads/2026/06/image-1-300x252.png 300w, https://alfter.us/wp-content/uploads/2026/06/image-1-768x644.png 768w, https://alfter.us/wp-content/uploads/2026/06/image-1-624x523.png 624w" sizes="(max-width: 875px) 100vw, 875px" /></a></figure>



<p class="wp-block-paragraph">This should be adaptable to any Windows app that will run under Wine (which is an ever-increasing percentage of them).  Programs that need to be installed would be a bit trickier to get running, but it should still be possible to get them running.</p>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">51410</post-id>	</item>
		<item>
		<title>Heineken, schmeineken&#8230;</title>
		<link>https://alfter.us/2016/03/14/heineken-schmeineken/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Mon, 14 Mar 2016 22:32:34 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[hashing]]></category>
		<category><![CDATA[wtf]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=5733</guid>

					<description><![CDATA[This is what you get when you dip a reuben sandwich in PBR beer batter and fry it up: The Pabst Blue Reuben I was super drunk out in Vegas at the time and responded by saying something along the lines of “What if I took an entire Reuben sandwich, dipped it in Pabst beer [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://alfter.us/wp-content/uploads/2016/03/ThePabstBlueReuben-225x300.jpg" rel="attachment wp-att-5734"><img decoding="async" class="alignright size-medium wp-image-5734" src="https://alfter.us/wp-content/uploads/2016/03/ThePabstBlueReuben-225x300-225x300-1.jpg" alt="ThePabstBlueReuben-225x300" width="225" height="300" /></a>This is what you get when you dip a reuben sandwich in PBR beer batter and fry it up:</p>
<p><a href="http://dudefoods.com/the-pabst-blue-reuben/">The Pabst Blue Reuben</a></p>
<blockquote><p>I was super drunk out in Vegas at the time and responded by saying something along the lines of “What if I took an entire Reuben sandwich, dipped it in Pabst beer batter and deep fried it? It could be called the Pabst Blue Reuben!”</p>
<p>They were into it an apparently the people over at Pabst were as well so they have me the go ahead and here it is — The Pabst Blue Reuben!</p>
<p>just based on the name alone, the Pabst Blue Reuben is pretty awesome, but taste-wise it was even better! I’ve yet to find a single food that beer batter and a quick dip in some 375<b>°</b> oil can’t improve upon.</p></blockquote>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">5733</post-id>	</item>
		<item>
		<title>Awesomeness</title>
		<link>https://alfter.us/2015/12/11/awesomeness/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Fri, 11 Dec 2015 22:58:20 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[running]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=5301</guid>

					<description><![CDATA[Found this on the book of faces&#8230;an 81-year-old not only finished a beer mile with a not-too-bad time, but she beat her daughter and son-in-law while she was at it: This 81-Year-Old Grandma Is Better at Drinking and Running Than You Are If you&#8217;ve ever subjected your body to a beer mile race &#8212; easily [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.thrillist.com/news/nation/this-81-year-old-grandma-is-better-at-drinking-and-running-than-you-are"><img decoding="async" class="alignright" src="http://assets3.thrillist.com/v1/image/1614625/size/tmg-facebook_share" alt="" width="165" height="165" /></a>Found this on the book of faces&#8230;an 81-year-old not only finished a beer mile with a not-too-bad time, but she beat her daughter and son-in-law while she was at it:</p>
<p><a href="https://www.thrillist.com/news/nation/this-81-year-old-grandma-is-better-at-drinking-and-running-than-you-are">This 81-Year-Old Grandma Is Better at Drinking and Running Than You Are</a></p>
<blockquote><p>If you&#8217;ve ever subjected your body to a beer mile race &#8212; easily one of the world&#8217;s ultimate tests of physical and emotional endurance &#8212; you might want to contact Elvira Montes for some pointers. The 81-year-old grandmother of three was, not only the oldest person to finish during the 2015 FloTrack Beer Mile World Championships in Austin, Texas on Tuesday night, but also outran her daughter and son-in-law, according to a <a href="http://www.runnersworld.com/fun/meet-the-grandma-who-outran-her-kids-at-the-beer-mile" target="_blank">report</a> by<em>Runner&#8217;s World.</em> Needless to say, she&#8217;s a freaking hero.</p>
<p>[&#8230;]</p>
<p>While the beer mile world champions crossed the finish line in a cloud of sweat and suds <a href="http://ftw.usatoday.com/2015/12/two-world-champions-explain-how-to-run-the-perfect-beer-mile" target="_blank">faster than you can pour a beer and drink it</a>, Montes finished the race with a damn impressive time of just 20 minutes and 24 seconds &#8212; 50 seconds faster than her 47-year-old daughter. She admittedly doesn&#8217;t even like beer, but pounded four bottles of KCCO Gold Lager from Resignation Brewery, according to the report.</p>
<p>The race marked Montes&#8217; second beer run, having participated in the same event last year. Next year, she plans to break 20 minutes and said she can improve by drinking her beer faster.</p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">5301</post-id>	</item>
		<item>
		<title>Only five beers away</title>
		<link>https://alfter.us/2015/10/23/only-five-beers-away/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Sat, 24 Oct 2015 00:56:50 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=5052</guid>

					<description><![CDATA[beerlist.alfter.us I&#8217;ve been logging the beers I&#8217;ve had here since 2008 (IIRC), and as I write this, the count stands at 1967.  Five more, and it&#8217;s at my birth year. Another 28 after that will bring it to an even 2000.]]></description>
										<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://beerlist.alfter.us/" target="_blank">beerlist.alfter.us</a></p>
<p style="text-align: left;">I&#8217;ve been logging the beers I&#8217;ve had here since 2008 (IIRC), and as I write this, the count stands at 1967.  Five more, and it&#8217;s at my birth year. Another 28 after that will bring it to an even 2000.</p>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">5052</post-id>	</item>
		<item>
		<title>SJWs&#8217; Latest Windmill: Craft Beers With Suggestive Names</title>
		<link>https://alfter.us/2015/07/08/sjws-latest-windmill-craft-beers-with-suggestive-names/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Wed, 08 Jul 2015 21:47:25 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[culture wars]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=4114</guid>

					<description><![CDATA[The author of the Federalist piece knocks Double D Double IPA.  I&#8217;ve had it, and wouldn&#8217;t have any qualms about it being in my fridge: Social Attention Whores Have New Made-Up Concern to Complain About: Craft Beers With Sexually-Suggestive Names Hey Slate, Bullying Microbreweries Won’t End Misogyny The writers at Slate should get off their [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://alfter.us/wp-content/uploads/2015/07/double_ipa_logo.286x0.jpg"><img loading="lazy" decoding="async" class="alignright size-full wp-image-4116" src="https://alfter.us/wp-content/uploads/2015/07/double_ipa_logo.286x0.jpg" alt="double_ipa_logo.286x0" width="286" height="247" /></a>The author of the <em>Federalist</em> piece knocks Double D Double IPA.  I&#8217;ve had it, and wouldn&#8217;t have any qualms about it being in my fridge:</p>
<p><a href="http://minx.cc:1080/?post=357752">Social Attention Whores Have New Made-Up Concern to Complain About: Craft Beers With Sexually-Suggestive Names</a></p>
<blockquote><p><a href="http://thefederalist.com/2015/07/08/hey-slate-bullying-microbreweries-wont-end-misogyny/">Hey Slate, Bullying Microbreweries Won’t End Misogyny</a></p>
<blockquote><p>The writers at Slate should get off their high horses and just drink a beer already.</p>
<p>In a recent article, <a href="http://www.slate.com/articles/life/drink/2015/07/craft_beer_sexism_labels_like_raging_bitch_and_happy_ending_only_alienate.2.html" target="_blank">William Gordon wails</a> about the “gross puns and derogatory labels” on craft beers. And maybe he’s right—some microbrews probably should clean up their act.</p>
<p>But maybe Slate should also apply the Left’s traditional logic: if you don’t like a misogynistic beer, don’t have one. After all, the only person worse than the dude who brings “Raging Bitch IPA” to the party is the culture warrior who whines about it.</p></blockquote>
</blockquote>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">4114</post-id>	</item>
		<item>
		<title>Hops&#8230;phytoestrogenic?  Say it ain&#8217;t so!</title>
		<link>https://alfter.us/2015/06/19/hops-phytoestrogenic-say-it-aint-so/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Sat, 20 Jun 2015 02:58:48 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[wtf]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=4021</guid>

					<description><![CDATA[Your favorite beer might be giving you man boobs It might seem manly to drink beer, but a chemical found in hops might be the cause of some very feminine attributes. Hops, which gives beer its flavor, are female flowers of the hop plant and contain high levels of phytoestrogen—a plant estrogen. According to research [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="http://www.foxnews.com/leisure/2015/06/18/your-favorite-beer-might-be-giving-man-boobs/">Your favorite beer might be giving you man boobs</a></p>
<blockquote><p>It might seem manly to drink beer, but a chemical found in hops might be the cause of some very feminine attributes.</p>
<p>Hops, which gives beer its flavor, are female flowers of the hop plant and contain high levels of phytoestrogen—a plant estrogen.</p>
<p>According to research conducted by acclaimed herbalist and author <a href="http://www.gaianstudies.org/Stephen.html" target="blank">Stephen Harrod Buhner,</a> hops can also contribute to breast development in men and to a condition called “brewer’s droop”—or <a href="http://www.telegraph.co.uk/news/health/news/9812293/Brewers-droop-can-hang-around-for-months.html" target="blank">impotence brought on by heavy drinking.</a></p></blockquote>
<p>[youtube https://www.youtube.com/watch?v=EKpiTL8fPM8]</p>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">4021</post-id>	</item>
		<item>
		<title>News you can use</title>
		<link>https://alfter.us/2015/05/22/news-you-can-use-2/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Fri, 22 May 2015 17:46:20 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[cool stuff]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=3924</guid>

					<description><![CDATA[Free beer for all the hashers&#8230;for your health and longevity: A beer a day is 110-year-old Nebraska man&#8217;s secret to a long life A can of beer every day is Mark Behrends’ secret to a long life. The Nebraska City man turned 110 years old on May 16, making him Nebraska’s oldest living person and [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Free beer for all the hashers&#8230;for your health and longevity:<a href="https://alfter.us/wp-content/uploads/2015/05/555ca2a02e755.image_.jpg"><img loading="lazy" decoding="async" class="alignright size-medium wp-image-3927" src="https://alfter.us/wp-content/uploads/2015/05/555ca2a02e755.image_-300x169.jpg" alt="555ca2a02e755.image" width="300" height="169" srcset="https://alfter.us/wp-content/uploads/2015/05/555ca2a02e755.image_-300x169.jpg 300w, https://alfter.us/wp-content/uploads/2015/05/555ca2a02e755.image_.jpg 1024w, https://alfter.us/wp-content/uploads/2015/05/555ca2a02e755.image_-624x351.jpg 624w" sizes="auto, (max-width: 300px) 100vw, 300px" /></a></p>
<p><a href="http://www.omaha.com/news/goodnews/a-beer-a-day-is--year-old-nebraska-man/article_593400c2-ff01-11e4-91cd-07567e4c1d10.html">A beer a day is 110-year-old Nebraska man&#8217;s secret to a long life</a></p>
<blockquote><p>A can of beer every day is Mark Behrends’ secret to a long life.</p>
<p>The Nebraska City man turned 110 years old on May 16, making him Nebraska’s oldest living person and possibly the oldest man living in the United States.</p>
<p>“He always told everybody the reason he has lived so long is drinking one can of beer, every day at 3 p.m.,” said his daughter Lois Bassinger of Nebraska City. “He always joked that that was his medicine since he takes very little medicine.”</p></blockquote>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">3924</post-id>	</item>
		<item>
		<title>Pix from the 2015 Boulder City Beerfest</title>
		<link>https://alfter.us/2015/03/29/pix-from-the-2015-boulder-city-beerfest/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Sun, 29 Mar 2015 16:08:38 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=3685</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><style id="bwg-style-0">    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails {      width: 904px;              justify-content: center;        margin:0 auto !important;              background-color: rgba(255, 255, 255, 0.00);            padding-left: 4px;      padding-top: 4px;      max-width: 100%;            }        #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item {    justify-content: flex-start;      max-width: 180px;            width: 180px !important;          }    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item a {       margin-right: 4px;       margin-bottom: 4px;    }    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item0 {      padding: 0px;            background-color:rgba(255,255,255, 0.30);      border: 0px none #CCCCCC;      opacity: 1.00;      border-radius: 0;      box-shadow: 0px 0px 0px #888888;    }    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item1 img {      max-height: none;      max-width: none;      padding: 0 !important;    }        @media only screen and (min-width: 480px) {      #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item0 {        transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;      }      #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item0:hover {        -ms-transform: scale(1.1);        -webkit-transform: scale(1.1);        transform: scale(1.1);      }    }          #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-item1 {      padding-top: 50%;    }        #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-title2,    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-ecommerce2 {      color: #CCCCCC;      font-family: segoe ui;      font-size: 16px;      font-weight: bold;      padding: 2px;      text-shadow: 0px 0px 0px #888888;      max-height: 100%;    }    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-thumb-description span {    color: #323A45;    font-family: Ubuntu;    font-size: 12px;    max-height: 100%;    word-wrap: break-word;    }    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-play-icon2 {      font-size: 32px;    }    #bwg_container1_0 #bwg_container2_0 .bwg-container-0.bwg-standard-thumbnails .bwg-ecommerce2 {      font-size: 19.2px;      color: #CCCCCC;    }    </style>    <div id="bwg_container1_0"         class="bwg_container bwg_thumbnail bwg_thumbnails "         data-right-click-protection="0"         data-bwg="0"         data-scroll="0"         data-gallery-type="thumbnails"         data-gallery-view-type="thumbnails"         data-current-url="/category/beer-2/feed/"         data-lightbox-url="https://alfter.us/wp-admin/admin-ajax.php?action=GalleryBox&#038;current_view=0&#038;gallery_id=13&#038;tag=0&#038;theme_id=1&#038;shortcode_id=1&#038;sort_by=filename&#038;order_by=asc&#038;current_url=%2Fcategory%2Fbeer-2%2Ffeed%2F"         data-gallery-id="13"         data-popup-width="800"         data-popup-height="500"         data-is-album="gallery"         data-buttons-position="bottom">      <div id="bwg_container2_0">             <div id="ajax_loading_0" class="bwg_loading_div_1">      <div class="bwg_loading_div_2">        <div class="bwg_loading_div_3">          <div id="loading_div_0" class="bwg_spider_ajax_loading">          </div>        </div>      </div>    </div>            <form id="gal_front_form_0"              class="bwg-hidden"              method="post"              action="#"              data-current="0"              data-shortcode-id="1"              data-gallery-type="thumbnails"              data-gallery-id="13"              data-tag="0"              data-album-id="0"              data-theme-id="1"              data-ajax-url="https://alfter.us/wp-admin/admin-ajax.php?action=bwg_frontend_data">          <div id="bwg_container3_0" class="bwg-background bwg-background-0">                <div data-max-count="5"         data-thumbnail-width="180"         data-bwg="0"         data-gallery-id="13"         data-lightbox-url="https://alfter.us/wp-admin/admin-ajax.php?action=GalleryBox&amp;current_view=0&amp;gallery_id=13&amp;tag=0&amp;theme_id=1&amp;shortcode_id=1&amp;sort_by=filename&amp;order_by=asc&amp;current_url=%2Fcategory%2Fbeer-2%2Ffeed%2F"         id="bwg_thumbnails_0"         class="bwg-container-0 bwg-thumbnails bwg-standard-thumbnails bwg-container bwg-border-box">            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="760"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/001-IMG_0261.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/001-IMG_0261.jpg"                   alt="001-IMG_0261"                   title="001-IMG_0261" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="761"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/002-IMG_0262.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/002-IMG_0262.jpg"                   alt="002-IMG_0262"                   title="002-IMG_0262" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="762"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/003-IMG_0263.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/003-IMG_0263.jpg"                   alt="003-IMG_0263"                   title="003-IMG_0263" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="763"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/004-IMG_0264.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/004-IMG_0264.jpg"                   alt="004-IMG_0264"                   title="004-IMG_0264" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="764"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/005-IMG_0265.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/005-IMG_0265.jpg"                   alt="005-IMG_0265"                   title="005-IMG_0265" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="765"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/006-IMG_0266.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/006-IMG_0266.jpg"                   alt="006-IMG_0266"                   title="006-IMG_0266" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="766"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/007-IMG_0267.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/007-IMG_0267.jpg"                   alt="007-IMG_0267"                   title="007-IMG_0267" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="767"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/008-IMG_0268.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/008-IMG_0268.jpg"                   alt="008-IMG_0268"                   title="008-IMG_0268" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="768"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/009-IMG_0269.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/009-IMG_0269.jpg"                   alt="009-IMG_0269"                   title="009-IMG_0269" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="769"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/010-IMG_0270.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/010-IMG_0270.jpg"                   alt="010-IMG_0270"                   title="010-IMG_0270" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="770"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/011-IMG_0271.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/011-IMG_0271.jpg"                   alt="011-IMG_0271"                   title="011-IMG_0271" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="771"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/012-IMG_20150328_134719612_HDR.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/012-IMG_20150328_134719612_HDR.jpg"                   alt="012-IMG_20150328_134719612_HDR"                   title="012-IMG_20150328_134719612_HDR" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="772"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/013-IMG_0272.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/013-IMG_0272.jpg"                   alt="013-IMG_0272"                   title="013-IMG_0272" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="773"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/014-IMG_0273.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/014-IMG_0273.jpg"                   alt="014-IMG_0273"                   title="014-IMG_0273" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="774"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/015-IMG_0274.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/015-IMG_0274.jpg"                   alt="015-IMG_0274"                   title="015-IMG_0274" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="775"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/016-IMG_0275.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/016-IMG_0275.jpg"                   alt="016-IMG_0275"                   title="016-IMG_0275" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="776"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/017-IMG_0276.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/017-IMG_0276.jpg"                   alt="017-IMG_0276"                   title="017-IMG_0276" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="777"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/018-IMG_0277.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/018-IMG_0277.jpg"                   alt="018-IMG_0277"                   title="018-IMG_0277" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="778"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/019-IMG_0278.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/019-IMG_0278.jpg"                   alt="019-IMG_0278"                   title="019-IMG_0278" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="779"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/020-IMG_0279.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/020-IMG_0279.jpg"                   alt="020-IMG_0279"                   title="020-IMG_0279" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="780"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/021-IMG_0280.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/021-IMG_0280.jpg"                   alt="021-IMG_0280"                   title="021-IMG_0280" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="781"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/022-IMG_0281.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/022-IMG_0281.jpg"                   alt="022-IMG_0281"                   title="022-IMG_0281" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="782"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/023-IMG_0282.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/023-IMG_0282.jpg"                   alt="023-IMG_0282"                   title="023-IMG_0282" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="783"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/024-IMG_0283.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/024-IMG_0283.jpg"                   alt="024-IMG_0283"                   title="024-IMG_0283" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="784"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/025-IMG_0284.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/025-IMG_0284.jpg"                   alt="025-IMG_0284"                   title="025-IMG_0284" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="785"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/026-IMG_0285.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/026-IMG_0285.jpg"                   alt="026-IMG_0285"                   title="026-IMG_0285" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="786"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/027-IMG_0286.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/027-IMG_0286.jpg"                   alt="027-IMG_0286"                   title="027-IMG_0286" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="787"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/028-IMG_0287.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/028-IMG_0287.jpg"                   alt="028-IMG_0287"                   title="028-IMG_0287" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="788"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/029-IMG_20150328_150103417_HDR.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/029-IMG_20150328_150103417_HDR.jpg"                   alt="029-IMG_20150328_150103417_HDR"                   title="029-IMG_20150328_150103417_HDR" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>            <div class="bwg-item">        <a class="bwg-a "  data-elementor-open-lightbox="no">                <div class="bwg-item0 ">          <div class="bwg-item1 ">            <div class="bwg-item2">              <img decoding="async" class="skip-lazy bwg_standart_thumb_img_0 "                   data-id="789"                   data-width=""                   data-height=""                   data-src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/030-IMG_0288.jpg"                   src="https://alfter.us/wp-content/uploads/photo-gallery/BCBF%202015/thumb/030-IMG_0288.jpg"                   alt="030-IMG_0288"                   title="030-IMG_0288" />            </div>            <div class="">                                                      </div>          </div>        </div>                        </a>              </div>          </div>    <style>      /*pagination styles*/      #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 {				text-align: center;				font-size: 12px;				font-family: segoe ui;				font-weight: bold;				color: #666666;				margin: 6px 0 4px;				display: block;      }      @media only screen and (max-width : 320px) {      #bwg_container1_0 #bwg_container2_0 .displaying-num_0 {     	 display: none;      }      }      #bwg_container1_0 #bwg_container2_0 .displaying-num_0 {				font-size: 12px;				font-family: segoe ui;				font-weight: bold;				color: #666666;				margin-right: 10px;				vertical-align: middle;      }      #bwg_container1_0 #bwg_container2_0 .paging-input_0 {				font-size: 12px;				font-family: segoe ui;				font-weight: bold;				color: #666666;				vertical-align: middle;      }      #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.disabled,      #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.disabled:hover,      #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a.disabled:focus,			#bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 input.bwg_current_page {				cursor: default;				color: rgba(102, 102, 102, 0.5);      }      #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 a,      #bwg_container1_0 #bwg_container2_0 .tablenav-pages_0 input.bwg_current_page {				cursor: pointer;				text-align: center;				font-size: 12px;				font-family: segoe ui;				font-weight: bold;				color: #666666;				text-decoration: none;				padding: 3px 6px;				margin: 0;				border-radius: 0;				border-style: solid;				border-width: 1px;				border-color: #E3E3E3;								background-color: rgba(255, 255, 255, 1.00);				box-shadow: 0;				transition: all 0.3s ease 0s;-webkit-transition: all 0.3s ease 0s;      }      </style>      <span class="bwg_nav_cont_0">              <div class="tablenav-pages_0">                      <span class="pagination-links_0 pagination-links" data-pages-count="7">              <span class="pagination-links_col1">              <a class="bwg-a first-page disabled" title="Go to the first page" >«</a>              <a class="bwg-a prev-page disabled" title="Go to the previous page" >‹</a>              </span>							<span class="pagination-links_col2">									<input type="number" class="bwg_current_page" name="bwg_current_page" value="1" data-url-info="page_number_0" onkeypress="return bwg_change_page_0(event, this)" min="1" oninput="validity.valid||(value='')" />										of										<span class="total-pages_0">											7										</span>							</span>              <span class="pagination-links_col3">                <a class="bwg-a next-page-0" title="Go to the next page" href="/category/beer-2/feed/?page_number_0=2">›</a>                <a class="bwg-a last-page-0" title="Go to the last page" href="/category/beer-2/feed/?page_number_0=7">»</a>              </span>						</span>						        </div>                <input type="hidden" id="page_number_0" name="page_number_0" value="1" />      <script type="text/javascript">        if( jQuery('.bwg_nav_cont_0').length > 1 ) {          jQuery('.bwg_nav_cont_0').first().remove()        }        function spider_page_0(cur, x, y, load_more) {          if (typeof load_more == "undefined") {            var load_more = false;          }          if (jQuery(cur).hasClass('disabled')) {            return false;          }          var items_county_0 = 7;          switch (y) {            case 1:              if (x >= items_county_0) {                document.getElementById('page_number_0').value = items_county_0;              }              else {                document.getElementById('page_number_0').value = x + 1;              }              break;            case 2:              document.getElementById('page_number_0').value = items_county_0;              break;            case -1:              if (x == 1) {                document.getElementById('page_number_0').value = 1;              }              else {                document.getElementById('page_number_0').value = x - 1;              }              break;            case -2:              document.getElementById('page_number_0').value = 1;              break;						case 0:              document.getElementById('page_number_0').value = x;              break;            default:              document.getElementById('page_number_0').value = 1;          }          bwg_ajax('gal_front_form_0', '0', 'bwg_thumbnails_0', '0', '', 'gallery', 0, '', '', load_more, '', 1);        }                    jQuery('.first-page disabled').on('click', function () {              spider_page_0(this, 1, -2, 'numeric');              return false;            });            jQuery('.prev-page disabled').on('click', function () {              spider_page_0(this, 1, -1, 'numeric');              return false;            });            jQuery('.next-page-0').on('click', function () {              spider_page_0(this, 1, 1, 'numeric');              return false;            });            jQuery('.last-page-0').on('click', function () {              spider_page_0(this, 1, 2, 'numeric');              return false;            });        				/* Change page on input enter. */        function bwg_change_page_0( e, that ) {          if (  e.key == 'Enter' ) {            var to_page = parseInt(jQuery(that).val());            var pages_count = jQuery(that).parents(".pagination-links").data("pages-count");            var current_url_param = jQuery(that).attr('data-url-info');            if (to_page > pages_count) {              to_page = 1;            }	 												spider_page_0(this, to_page, 0, 'numeric');							return false;						          }          return true;        }        jQuery('.bwg_load_btn_0').on('click', function () {            spider_page_0(this, 1, 1, true);            return false;        });      </script>      </span>                </div>        </form>              </div>    </div>    <script>      if (document.readyState === 'complete') {        if( typeof bwg_main_ready == 'function' ) {          if ( jQuery("#bwg_container1_0").height() ) {            bwg_main_ready(jQuery("#bwg_container1_0"));          }        }      } else {        document.addEventListener('DOMContentLoaded', function() {          if( typeof bwg_main_ready == 'function' ) {            if ( jQuery("#bwg_container1_0").height() ) {             bwg_main_ready(jQuery("#bwg_container1_0"));            }          }        });      }    </script>    </p>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">3685</post-id>	</item>
		<item>
		<title>&#8220;Enhanced water?&#8221; You could say that. :-)</title>
		<link>https://alfter.us/2015/02/12/enhanced-water-you-could-say-that/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Thu, 12 Feb 2015 15:23:24 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[humor]]></category>
		<guid isPermaLink="false">https://alfter.us/wp/?p=3368</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><a href="https://alfter.us/wp-content/uploads/2015/02/beer-enhanced-water.jpg"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3369" src="https://alfter.us/wp-content/uploads/2015/02/beer-enhanced-water.jpg" alt="beer-enhanced-water" width="394" height="700" srcset="https://alfter.us/wp-content/uploads/2015/02/beer-enhanced-water.jpg 394w, https://alfter.us/wp-content/uploads/2015/02/beer-enhanced-water-169x300.jpg 169w" sizes="auto, (max-width: 394px) 100vw, 394px" /></a></p>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">3368</post-id>	</item>
		<item>
		<title>Omagh’s ‘Shawshank Husband’ Dug Tunnel From Bedroom To Pub Over 15 Years</title>
		<link>https://alfter.us/2014/09/29/omaghs-shawshank-husband-dug-tunnel-from-bedroom-to-pub-over-15-years/</link>
		
		<dc:creator><![CDATA[Scott Alfter]]></dc:creator>
		<pubDate>Mon, 29 Sep 2014 14:54:44 +0000</pubDate>
				<category><![CDATA[beer]]></category>
		<category><![CDATA[humor]]></category>
		<guid isPermaLink="false">http://alfter.us/wp/?p=2511</guid>

					<description><![CDATA[Part The Shawshank Redemption, part The Great Escape: Omagh’s ‘Shawshank Husband’ Dug Tunnel From Bedroom To Pub Over 15 Years “The wife has a bad snore on her and after watching the Shawshank Redemption on RTE one night in 1994, I decided to do something about it so I waited til she was in a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Part <em>The Shawshank Redemption</em>, part <em>The Great Escape</em>:</p>
<p><a href="http://tyronetribulations.com/2014/09/25/omaghs-shawshank-husband-dug-tunnel-from-bedroom-to-pub-over-15-years/">Omagh’s ‘Shawshank Husband’ Dug Tunnel From Bedroom To Pub Over 15 Years</a></p>
<blockquote><p>“The wife has a bad snore on her and after watching the Shawshank Redemption on RTE one night in 1994, I decided to do something about it so I waited til she was in a deep sleep and then set about digging a hole under the bed in the direction of the pub. I used all manner of tools from spoons to a heavy duty tunnel boring machine I managed to sneak down there when she was at the shops. It wasn’t until 2009 that I hit the jackpot and came up through the women’s toilet mop and bucket room.”</p></blockquote>
<p>Total distance: about 800&#8242;.</p>
]]></content:encoded>
					
		
		
		<friends:post-format>standard</friends:post-format>
<post-id xmlns="com-wordpress:feed-additions:1">2511</post-id>	</item>
	</channel>
</rss>
