I have my site setup so that if you are on a mobile you get a mobile rendered template. To click to go to the main site you go
index.php?id=??&mainsite=1
This all works fine however I have a link at the bottom of my mobile template that says go to main site. I want this to go to the main template page for the current page id eg
index.php?id=page:uid&mainsite=1
If I do
lib.mainsitelink= TEXT
lib.mainsitelink.data = page:uid
I get
www.example.com/uid
so when uid = 3 i get
www.example.com/3
but if i do the below code it doesn't work
lib.mainsitelink= TEXT
lib.mainsitelink.data = index.php?id=page:uid&mainsite=1
Is there a way to either do what I am trying to do or add a parameter to the end of the current url? eg what I am trying to do won't quite work on the news single page.