base3.html (642B)
1 $def with (content) 2 <!doctype html> 3 <head> 4 <meta name="viewport" content="initial-scale=1.0"> 5 <meta http-equiv="cache-control" content="no-cache"> 6 <meta charset="utf-8"> 7 <style> 8 /* Always set the map height explicitly to define the size of the div 9 * element that contains the map. */ 10 /* Optional: Makes the sample page fill the window. */ 11 html, body { 12 height: 100%; 13 margin: 0px auto; 14 padding: 0; 15 } 16 #container { 17 margin: 0px auto; 18 width: 95%; 19 } 20 #protokoll { 21 margin: 0px auto; 22 width: 750px; 23 height: 800px; 24 } 25 </style> 26 </head> 27 28 <body> 29 30 $:content 31 32 </body> 33