mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
9f85b74fc9
Former-commit-id: da4f38eb9034daa49446df3ee529423b98f9b331
26 lines
850 B
HTML
26 lines
850 B
HTML
<a href="{{urlpath "my-page1"}}">/mypath</a>
|
|
<br />
|
|
<br />
|
|
|
|
<a href="{{urlpath "my-page2" "theParam1" "theParam2"}}">/mypath2/{paramfirst}/{paramsecond}</a>
|
|
<br />
|
|
<br />
|
|
|
|
<a href="{{urlpath "my-page3" "theParam1" "theParam2AfterStatic"}}">/mypath3/{paramfirst}/statichere/{paramsecond}</a>
|
|
<br />
|
|
<br />
|
|
|
|
<a href="{{urlpath "my-page4" "theParam1" "theparam2AfterStatic" "otherParam" "matchAnything"}}">
|
|
/mypath4/{paramfirst}/statichere/{paramsecond}/{otherparam}/{something:path}</a>
|
|
<br />
|
|
<br />
|
|
|
|
<a href="{{urlpath "my-page5" "theParam1" "theParam2Afterstatichere" "otherParam" "matchAnythingAfterStatic"}}">
|
|
/mypath5/{paramfirst}/statichere/{paramsecond}/{otherparam}/anything/{anything:path}</a>
|
|
<br />
|
|
<br />
|
|
|
|
<a href={{urlpath "my-page6" .ParamsAsArray }}>
|
|
/mypath6/{paramfirst}/{paramsecond}/statichere/{paramThirdAfterStatic}
|
|
</a>
|