-
Notifications
You must be signed in to change notification settings - Fork 790
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add links in tag in freestuffdev #904
Comments
I can take it up if no one else is working on it. |
Hi Ch-Siva-Naga-Raju. I would like to help, my general idea has to do with this code snippet:
concept: anchors 1 <p class="mt-20">Tag:
<a href=""> markdown, </a>
<a> awesome-list</a>
</p> concept: anchors 2 <ul class="tags mb-10">
<li><a href="/tags/api">api</a></li>
<li><a href="/tags/database">database</a></li>
</ul> concept: url
before <p class="mt-20">
<em>
Tag: {{delimit .Params.tags ", "}}
</em>
</p>
</div>
</div> after 1 <p class="mt-20">
{{ range (first 20 Params.tags.ByCount) }}
<em><a title="{{delimit .Params.tags ", "}}" href="/tags/{{ .Name | urlize }}"> Tag: {{delimit .Params.tags ", "}} </a></em>
{{ end }}
</p>
</div>
</div> after 2 <p>
<a title="{{delimit .Params.tags ", "}}" href="/tags/{{ .Name | urlize }}" class="mt-20">
Tag: {{delimit .Params.tags ", "}}
</a>
</p>
</div>
</div> after 3 <p class="mt-20">
{{ range $i, $e := delimit .Params.tags ", " -}}
{{- if $i -}}, {{ end -}}
<em> <a href='{{ "/tags/" | relLangURL }}{{ . | urlize }}'>{{ $e | humanize }}</a> </em>
{{- end -}}
</p>
</div>
</div> |
Thanks a lot. I Thought along similar lines for the hyperlinks. Will raise a PR soon. |
Never faced an issue while cloning a git project like this... PS F:\Coding Practice\Open Source> git clone https://github.com/hilmanski/freeStuffDev.git Resolving deltas: 100% (6819/6819), done. One solution provided in my search to fix it is mentioned here. The above solution didn't work Will check for other ways to resolve the issue. But in case you faced this issue and got a solution that worked for you, please do let me know. |
hi can i work on this issue |
1. Issue
A general problem with freestuffdev is that it has no linked tags, which makes certain information and useful links difficult for any user to access. For example:
img-before:
pros:
cons:
2. Idea
We may have tags linked to facilitate certain searches. For example:
img-after:
pros:
cons:
The text was updated successfully, but these errors were encountered: