+{%- assign docs_for_release = site.data.documentation[underscored_version].docs | sort: "rank" -%}
+{%- for doc in docs_for_release -%}
+{%- if doc.path contains 'quick' -%}
+{%- assign first1 = doc.path | slice: 0, 1 -%}
+{%- assign first7 = doc.path | slice: 0, 7 -%}
+{%- assign first8 = doc.path | slice: 0, 8 -%}
+{%- if first7 == 'http://' or first8 == 'https://' -%}
+{%- assign linkTemplate = doc.path -%}
+{%- elsif first1 == '/' -%}
+{%- assign linkTemplate = doc.path | absolute_url -%}
+{%- else -%}
+{%- assign linkTemplate = "/documentation/" | append: version | append: "/" | append: doc.path | absolute_url -%}
+{%- endif -%}
+
+
+
+
+{%- endif -%}
+{%- endfor -%}
+