All Projects → derencius → navigation_tags

derencius / navigation_tags

Licence: other
Radiant Extension - navigation_tags

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to navigation tags

max-safe-integer
ES2015 Number.MAX_SAFE_INTEGER ponyfill
Stars: ✭ 15 (-25%)
Mutual labels:  deprecated
exec-file-sync
Node.js 0.12 childProcess.execFileSync() ponyfill
Stars: ✭ 12 (-40%)
Mutual labels:  deprecated
twinfield
✗ [DEPRECATED] Library for using the Twinfield API
Stars: ✭ 20 (+0%)
Mutual labels:  deprecated
gradle-common-deps-plugin
Gradle plugin that provides convenience closure for configuring common dependencies
Stars: ✭ 22 (+10%)
Mutual labels:  deprecated
picosdk-python-examples
DEPRECATED - An example Python application and examples for PicoScope® oscilloscope products.
Stars: ✭ 21 (+5%)
Mutual labels:  deprecated
rhscl-dockerfiles
DEPRECATED AND NOT UPDATED set of dockerfiles for various Software Collection packages.
Stars: ✭ 79 (+295%)
Mutual labels:  deprecated
Rust Everywhere
SUPERSEDED by https://github.com/japaric/trust
Stars: ✭ 253 (+1165%)
Mutual labels:  deprecated
winnow
Deprecated
Stars: ✭ 89 (+345%)
Mutual labels:  deprecated
amazon-alexa-skill-library
DEPRECATED PHP Library for Amazon Alexa Skills
Stars: ✭ 13 (-35%)
Mutual labels:  deprecated
atom-remember-session
A simple package to make Atom remember your previous session - Not being developed anymore!
Stars: ✭ 15 (-25%)
Mutual labels:  deprecated
grunt-git-ftp
DEPRECATED: queries last git commit and FTPs modified files to server
Stars: ✭ 11 (-45%)
Mutual labels:  deprecated
vagrant-magento
**DEPRECATED**
Stars: ✭ 12 (-40%)
Mutual labels:  deprecated
audiobug
A simple Android app to record audio through the microphone.
Stars: ✭ 19 (-5%)
Mutual labels:  deprecated
commerce-cif-api
Adobe Commerce Integration Framework (CIF) API reference and data model documentation files
Stars: ✭ 18 (-10%)
Mutual labels:  deprecated
microsoft-teams-faqplusplus-app
DEPRECATED - This repository contains a deprecated version of the FAQ Plus app template. Please see the README file for more details and a link to the new repository
Stars: ✭ 47 (+135%)
Mutual labels:  deprecated
generator-oraclejet
DEPRECATED Yeoman generator for creating Web and Mobile-hybrid Oracle JET based applications
Stars: ✭ 13 (-35%)
Mutual labels:  deprecated
code-gov-style
Deprecated - Style for code.gov including buttons, banners, and cards
Stars: ✭ 12 (-40%)
Mutual labels:  deprecated
jQueryFileUpload.Net
[Out of Date] .Net handler for http://aquantum-demo.appspot.com/file-upload
Stars: ✭ 68 (+240%)
Mutual labels:  deprecated
codgic-web-legacy
🐛 A free, open-source Online Judge alternative. Coding Magic.
Stars: ✭ 13 (-35%)
Mutual labels:  deprecated
react-virtual-keyboard
Use jQuery Virtual Keyboard in react.js
Stars: ✭ 44 (+120%)
Mutual labels:  deprecated
= Navigation Tags

Provides hierarchical tree navigation based on Radiant's site structure. Outputs navigation in the form of a -very flexible and CSS'able- unordered list. Also provides r:if_self and r:if_ancestor_or_self

== Usage

  <r:nav [root="/"] [include_root="true"] [depth="2"] [expand_all="true"] [ids_for_lis="true"] />

  Given this directory tree: 

   * Home
   ** About
   *** Contact us
   ** Blog
   *** First Article
   *** Second Article
   ** Catalog

  <r:nav /> would output a navigation list like: 

  <ul>
    <li class="parent_of_current has_children"><a href="https://github.com/about/">About</a>
      <ul>
        <li class="current"><a href="https://github.com/about/contact">Contact Us</a></li>
      </ul>
    </li>
    <li class="has_children"><a href="https://github.com/blog/">Blog</a></li>
    <li class="has_children"><a href="https://github.com/catalogue">Catalogue</a></li>
  </ul>

  == Available tag attributes:

  * ids_for_lis: 	defaults to false, 			enable this to give each li an id (it's slug)
  * root: 		defaults to "/", 	          which page to start building the navigation from
  * include_root: defaults to false, 		  set to true to include the root page (i.e. Home)
  * depth: 		defaults to 2,				      which will print out the first two levels of pages.
  * expand_all: 	defaults to false, 			enable this to have all li's create sub-ul's of their children, i.o. only the currently active li
  * id, class, monkeyballs, ... 	        will be used as html attributes for the ul

= CREDITS

* Ryan Heneise
* Marty Haught
* Benny Degezelle
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].