Advertisement
koopa516

Untitled

Sep 19th, 2017
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 1.15 KB | None | 0 0
  1. public Webpage:mypage =
  2. {
  3.     name = "Red Sun Loadout",
  4.     author = "Frosty Scales",
  5.     description = "The entire redsun loadout re-coded in pawn but for web development",
  6.     version = PLUGIN_VERSION,
  7.     url = ""
  8. };
  9.  
  10. #define !DOCTYPE pawn
  11. #pragma semicolon 1
  12.  
  13.  
  14. main()
  15. {
  16.     link(rel = "stylesheet", type = "text/css", href = "assets/css/materialize.css") { }
  17.    
  18.     head()
  19.     {
  20.         section(id = "header")
  21.         {
  22.             header_1(class = "title")
  23.             {
  24.                 printf("Red Sun over Paradise Loadout");
  25.             }
  26.         }
  27.        
  28.         script(src = "assets/js/menu.js") { }
  29.         div(class = "material_header") { }
  30.         div(class = "steam_login")
  31.         {
  32.             img(src = "loginsteam.bmp", onclick = "assets/js/loginsteam.js");
  33.         }
  34.     }
  35.    
  36.     body()
  37.     {
  38.         for (new i = 0; i < 11; ++i)
  39.         {
  40.             div(class = "material-card", content = "")
  41.             {
  42.                 content = script()
  43.                 {
  44.                     var content;
  45.                     content = GetAnnouncement(i);
  46.                     return content;
  47.                 }
  48.                 printf(content);
  49.             }
  50.         }
  51.     }
  52.  
  53.     footer()
  54.     {
  55.         script(src = "assets/js/materialize-footer.js");
  56.         printf("&copy; 2017 Red Sun Over Paradise - Red Sun Over Paradise is not in any way, shape or form associated with Valve Corporation or Steam.");
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement