1- < a href ="{{urlpath "my-page1 "}}"> /mypath</ a >
2- < br />
3- < br />
4-
5- < a href ="{{urlpath "my-page2 " "theParam1" "theParam2"}}"> /mypath2/{paramfirst}/{paramsecond}</ a >
6- < br />
7- < br />
8-
9- < a href ="{{urlpath "my-page3 " "theParam1" "theParam2AfterStatic"}}"> /mypath3/{paramfirst}/statichere/{paramsecond}</ a >
10- < br />
11- < br />
12-
13- < a href ="{{urlpath "my-page4 " "theParam1" "theparam2AfterStatic" "otherParam" "matchAnything"}}">
14- /mypath4/{paramfirst}/statichere/{paramsecond}/{otherparam}/{something:path}</ a >
15- < br />
16- < br />
17-
18- < a href ="{{urlpath "my-page5 " "theParam1" "theParam2Afterstatichere" "otherParam" "matchAnythingAfterStatic"}}">
19- /mypath5/{paramfirst}/statichere/{paramsecond}/{otherparam}/anything/{anything:path}</ a >
20- < br />
21- < br />
22-
23- < a href ={{urlpath "my-page6" .ParamsAsArray }}>
24- /mypath6/{paramfirst}/{paramsecond}/statichere/{paramThirdAfterStatic}
25- </ a >
1+ < html >
2+
3+ < head >
4+ < title > template_html_3</ title >
5+ < style >
6+ a {
7+ color : # 0f7afc ;
8+ border-bottom-color : rgba (15 , 122 , 252 , 0.2 );
9+ text-decoration : none
10+ }
11+
12+ a : hover {
13+ color : # cf0000 ;
14+ border-bottom-color : rgba (208 , 64 , 0 , 0.2 );
15+ text-decoration : none
16+ }
17+
18+ a : visited {
19+ color : # 800080 ;
20+ border-bottom-color : rgba (128 , 0 , 128 , 0.2 );
21+ text-decoration : none
22+ }
23+ </ style >
24+ </ head >
25+
26+ < body >
27+
28+ < a href ="{{urlpath "my-page1 "}}"> /mypath</ a >
29+ < br />
30+ < br />
31+
32+ < a href ="{{urlpath "my-page2 " "theParam1" "theParam2"}}"> /mypath2/{paramfirst}/{paramsecond}</ a >
33+ < br />
34+ < br />
35+
36+ < a href ="{{urlpath "my-page3 " "theParam1" "theParam2AfterStatic"}}"> /mypath3/{paramfirst}/statichere/{paramsecond}</ a >
37+ < br />
38+ < br />
39+
40+ < a href ="{{urlpath "my-page4 " "theParam1" "theparam2AfterStatic" "otherParam" "matchAnything"}}">
41+ /mypath4/{paramfirst}/statichere/{paramsecond}/{otherparam}/{something:path}</ a >
42+ < br />
43+ < br />
44+
45+ < a href ="{{urlpath "my-page5 " "theParam1" "theParam2Afterstatichere" "otherParam" "matchAnythingAfterStatic"}}">
46+ /mypath5/{paramfirst}/statichere/{paramsecond}/{otherparam}/anything/{anything:path}</ a >
47+ < br />
48+ < br />
49+
50+ < a href ={{urlpath "my-page6" .ParamsAsArray }}>
51+ /mypath6/{paramfirst}/{paramsecond}/statichere/{paramThirdAfterStatic}
52+ </ a >
53+ </ body >
54+
55+ </ html >
0 commit comments