Skip to content
This repository was archived by the owner on Jan 5, 2021. It is now read-only.

ENBW/ENBW-Beer-List-Taproom

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ENBW Beer List

How To Add or Remove a Beer

In order to add a beer to the list removed the comment markers surrounding the beer in the index.html file.

In order the add The Grievance to the beer remove the <-- and --> marker from around the HTML text.

For example, The following code will not display The Grievance.

    <!-- The Grievance -->  
<!--
<div id="modalBtnTg" class="beer">
    <div class= logo-and-text>
      <img class="beer-logo" src="images/The-Grievance.svg" alt="The Grievance">
      <div class="beer-text">
        <div class="beer-name">The Grievance  </div>
        <div class="beer-tagline">Chocolate and Cinnamon Milk Stout</div>
      </div>
    </div>
    <div class="abv-and-tier">
      <div class="beer-abv">
        <div class="abv-text">ABV</div>
        <div class="abv-content">5.5%</div>
      </div>
      <div class="beer-tier">
        <div class="beer-tier-text">TIER</div>
       <div class="beer-tier-content">1</div>
      </div>
  </div>
</div>
-->

The following code will display The Grievance

    <!-- The Grievance -->  
<div id="modalBtnTg" class="beer">
    <div class= logo-and-text>
      <img class="beer-logo" src="images/The-Grievance.svg" alt="The Grievance">
      <div class="beer-text">
        <div class="beer-name">The Grievance  </div>
        <div class="beer-tagline">Chocolate and Cinnamon Milk Stout</div>
      </div>
    </div>
    <div class="abv-and-tier">
      <div class="beer-abv">
        <div class="abv-text">ABV</div>
        <div class="abv-content">5.5%</div>
      </div>
      <div class="beer-tier">
        <div class="beer-tier-text">TIER</div>
       <div class="beer-tier-content">1</div>
      </div>
  </div>
</div> 

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 59.2%
  • JavaScript 30.5%
  • CSS 10.3%