It's posible to modify a template class?
Hello All,
I am creating a new theme from another with my own templates in Apex 4.1.1. I see that each template has his own substitution strings, I guess depends on the template class that inherit. For example, the page 'One Level Tabs - Left Sidebar' inherits from 'One Level Tabs Sidebar'. This template class provides the substitution string #head# with the following content:
+<link rel="stylesheet" href="/i/css/apex_4_1.min.css" type="text/css" />+
+<!--[if IE]>+
+<link rel="stylesheet" href="/i/css/apex_ie_4_1.css" type="text/css" />+
+<![endif]-->+
+<link rel="stylesheet" href="/i/libraries/jquery-ui/1.8.14/themes/base/jquery-ui.min.css" type="text/css" />+
+<script type="text/javascript">+
var apex_img_dir = "/i/", htmldb_Img_Dir = apex_img_dir;
+</script>+
+<script src="/i/javascript/apex_4_1.min.js" type="text/javascript"></script>+
+<style>+
+html {visibility:hidden;}+
+</style>+
+<script type="text/javascript">+
apex.security.framebreaker("D");
+</script>+
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />+
+<meta http-equiv="Pragma" content="no-cache" />+
+<meta http-equiv="Expires" content="-1" />+
+<meta http-equiv="Cache-Control" content="no-cache" />+
I need to include meta tags similar to those incorporated by the substitution string. To not include more tags and they appearing by duplicate, would be possible to modify the class template or the substituion string?
Regards,
Edited by: RideTheStorm on Jan 8, 2013 8:09 AM