tera-toma

tags coding snippet freebie

Apr 9th, 2018
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!----------
  2. Here's my free to use navigation bar snippet! No credit required (it's a REALLY easy code line), but if you'd like to shout me out, go ahead!
  3.  
  4. This code works with tag navigation and with folder navigation, or with any other links you can think of. If you'd like to make a separate line for your tags, copy and paste the snippet, and replace "fa fa-folder-open" with "fa fa-tags".
  5. ---------->
  6.  
  7. <div class="characters-folder-description-content user-content fr-view">
  8.     <hr>
  9.     <h5 class="characters-title pb-0"><i class="fa fa-folder-open pr-1"></i>Navigation</h5>
  10.     <p class="pl-3 pt-1">
  11.     <a href="/LINK" class="btn btn-default">Location Name</a>
  12.     <a href="/LINK" class="btn btn-default">Location Name</a>
  13.     <a href="/LINK" class="btn btn-default">Location Name</a>
  14.     </p>
  15. </div>
  16.  
  17. <div class="characters-folder-description-content user-content fr-view">
  18.     <hr>
  19.     <h5 class="characters-title pb-0"><i class="fa fa-tags pr-1"></i>Navigation</h5>
  20.     <p class="pl-3 pt-1">
  21.     <a href="/LINK" class="btn btn-default">#TagName</a>
  22.     <a href="/LINK" class="btn btn-default">#TagName</a>
  23.     <a href="/LINK" class="btn btn-default">#TagName</a>
  24.     </p>
  25. </div>
Add Comment
Please, Sign In to add comment