I am new to Drupal 7.
I have different basic pages, I want to loop through every page using the meta tag:
<meta http-equiv="refresh" content="20; url=http://sitename/node/page2" />
page 2 would have the meta tag
<meta http-equiv="refresh" content="10; url=http://sitename/node/page3" />
How can I do this? i want the meta tags to be added on basic pages only
I tried using the TEMPLATEUSED_preprocess_html to add the meta tag however I already realized it was wrong since it's not dynamic and applies to every page.