Advertisement
Guest User

Untitled

a guest
Aug 29th, 2013
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 17.45 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5.  
  6.     <title>Resume</title>    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  7.     <link href="/resources-fc/css/framework.css" rel="stylesheet" type="text/css" media="screen" />
  8. <link href="/resources-fc/css/themes/bright-red.css" rel="stylesheet" type="text/css" media="screen" />
  9. <link href="/resources-fc/css/print.css" rel="stylesheet" type="text/css" media="print" />
  10. <link href="/resources-fc/javascript/jquery/tabs/css/jquery.tabs.css" rel="stylesheet" type="text/css" media="screen" />
  11. <!-- Additional IE/Win specific style sheet (Conditional Comments) -->
  12. <!--[if lte IE 7]>
  13. <link rel="stylesheet" href="/resources-fc/javascript/jquery/tabs/css/jquery.tabs-ie.css" type="text/css" media="projection, screen">
  14. <![endif]-->
  15. <link href="/resources-fc/css/about-me/resume/resume.css" rel="stylesheet" type="text/css" />   <script src="/resources-fc/javascript/jquery/jquery-1.2.5.min.js" type="text/javascript"></script>
  16. <script src="/resources-fc/javascript/standard.js" type="text/javascript"></script>
  17. <script src="/resources-fc/javascript/suckerfish.js" type="text/javascript"></script>
  18. <script src="/resources-fc/javascript/jquery/jquery-ui-1.6.js" type="text/javascript"></script>
  19. <script src="/resources-fc/javascript/jquery/tabs/jquery.tabs.pack.js" type="text/javascript"></script>
  20. <!---Drag/drop files-->
  21. <script type="text/javascript" src="/resources-fc/javascript/jquery/sortable/ui.mouse.js"></script>
  22. <script type="text/javascript" src="/resources-fc/javascript/jquery/sortable/ui.draggable.js"></script>
  23. <script type="text/javascript" src="/resources-fc/javascript/jquery/sortable/ui.droppable.js"></script>
  24. <script type="text/javascript" src="/resources-fc/javascript/jquery/sortable/ui.sortable.js"></script>
  25. <script type="text/javascript" src="/resources-fc/javascript/jquery/sortable/nestedListSort.js"></script>
  26. <!---/Drag/drop files-->
  27. <script type="text/javascript" src="/resources-fc/javascript/jquery/viewable/jquery.viewable.js"></script>
  28. <script type="text/javascript" src="/resources-fc/javascript/jquery/validate/jquery.validate.js"></script>
  29.        
  30.  
  31.      
  32. <script type="text/javascript">
  33.  
  34. // JS RELATED TO CREATE/EDIT RESUME LAYOUT
  35.  
  36.     // function to cancel a new layout form by sliding up the form and hiding it.  
  37.     function cancelNewLayout() {
  38.         showAdvancedMenu(-1);      
  39.     }
  40.    
  41.     function loadSavedFormats() {
  42.         $("#saved-formats").load("/family-connection/main/resume/index?Naviance_AJAX_Request=1&load_saved_formats=1");
  43.     }
  44.  
  45.     function showAdvancedMenu(Id) {
  46.         $(".create-format").load("/family-connection/main/resume/index?Naviance_AJAX_Request=1&load_advanced_menu&layout_id=" + Id,
  47.            function() {
  48.                initializeSortable();
  49.                 if (Id == -1) {
  50.                     $("#new_format").slideUp();
  51.                 }
  52.                 if (Id == -2) {
  53.                     $("#new_format").hide();
  54.                 }
  55.                 $(".add-format").click(function() {
  56.                     $(".create-format form").toggle();          
  57.                     $(this).toggleClass("close");
  58.                         return false;
  59.                     });
  60.         });  
  61.         return false;
  62.     }        
  63.  
  64.     function deleteLayout(Id) {
  65.  
  66.         var answer = confirm("Are you sure you want to delete this print format?");
  67.         if (answer) {
  68.             $.post("/family-connection/main/resume/index", { delete_layout: 1, id: Id, Naviance_AJAX_Request: 'delete_layout' },
  69.                     function(data) {
  70.                         if (data.success == 1) {
  71.                            //alert (data.message);
  72.                            loadSavedFormats();
  73.                            $("#delete-confirm").hide();
  74.                         }
  75.                         //processChange();
  76.                     }, "json");
  77.         }
  78.         return false;
  79.     }
  80.  
  81.     function initializeSortable () {
  82.         $(".section-content").sortable({ items: ".section-wrap", handle: 'a.sort-handle' });
  83.         $(".section-content-nested").sortable({ items: ".section-wrap-nested", handle: '.section-wrap-nested a.sort-handle' });
  84.     }
  85.    
  86.     function editLayout(Id) {
  87.         showAdvancedMenu(Id);
  88.         return false;
  89.     }
  90.  
  91.     function createResumeLayout() {
  92.         var form_data = $("#new_format").serialize();
  93.         $.post("/family-connection/main/resume/index", { form: form_data, Naviance_AJAX_Request: 'create_resume_layout' },
  94.             function(data) {
  95.                 if (data.success == 1) {
  96.                    //alert(data.message);
  97.  
  98.                    loadSavedFormats();
  99.                  
  100.                 }
  101.                 $(".add-entry").slideUp("slow");
  102.                
  103.             }, "json");
  104.         cancelNewLayout();
  105.  
  106.         return false;
  107.     }
  108.  
  109.     function editResumeLayout() {
  110.         var form_data = $("#new_format").serialize();
  111.         $.post("/family-connection/main/resume/index", { form: form_data, Naviance_AJAX_Request: 'edit_resume_layout' },
  112.             function(data) {
  113.                 if (data.success == 1) {
  114.                    loadSavedFormats();
  115.                 }
  116.             }, "json");
  117.         cancelNewLayout();
  118.  
  119.         return false;        
  120.  
  121.     }
  122.  
  123.     function submitResumeLayoutForm () {
  124.         if ($('#edit_form_id').length > 0) {
  125.             editResumeLayout();
  126.         }
  127.         else {
  128.             createResumeLayout();
  129.         }
  130.     }
  131.    
  132. // END JS RELATED TO CREATE/EDIT RESUME LAYOUT
  133.  
  134.  
  135.    
  136.     $(function() {
  137.    
  138.         $(".add-entry").hide();
  139.         $("#entry-type li li a").click(function(){
  140.             var type = $(this).attr("href");                            
  141.             $("#add_component_div").load("/family-connection/main/resume/index?Naviance_AJAX_Request=add_component_section&component_type=" + type.substring(1));
  142.             $(".add-entry:visible").hide();
  143.             $(type).fadeIn("slow");  // slideUp/slideDown does not play nice with IE
  144.             $(".default-wrap").slideUp("slow");
  145.             return false;
  146.         });
  147.  
  148.         $('#dialog').dialog('option', 'buttons', 'yellow-button');
  149.  
  150.         // Dialog          
  151.         $('#dialog').dialog({
  152.             autoOpen: false,
  153.             modal: true,
  154.             buttons: {
  155.                 "Ok": function() {
  156.                     $(this).dialog("close");
  157.                 },
  158.                 "Cancel": function() {
  159.                     $(this).dialog("close");
  160.                 }
  161.             }
  162.         });
  163.        
  164.         // Dialog Link
  165.         $('#dialog_link').click(function(){
  166.             $('#dialog').dialog('open');
  167.             return false;
  168.         })
  169.  
  170.     });  
  171.  
  172.     function cancelAddEntry () {
  173.          $(".add-entry").slideUp("slow");
  174.          $(".default-wrap").slideDown("slow");              
  175.     }
  176.    
  177.     function addToResume(Id) {
  178.  
  179.          if (Id) {
  180.                editResume(Id);
  181.                return false;
  182.          }       
  183.          var form_data = $(".myform").serialize();
  184.          $.post("/family-connection/main/resume/index", { serialized_form: form_data, Naviance_AJAX_Request: 'add_to_resume' },
  185.              function(data) {
  186.                  if (data.success == 1) {
  187.                     loadResume();              
  188.                  }
  189.                  processChange();
  190.              }, "json");
  191.          
  192.          $(".add-entry").slideUp("slow");
  193.          $(".instructions").text("Use the tools below to create and edit any sections you might want to use in your resume");
  194.          $("#container_tabs").show();
  195.          $("#build").css("border-top","1px solid #97A5B0");
  196.          
  197.          return false;
  198.     }
  199.  
  200.     function editResume(Id) {
  201.  
  202.         var form_data = $(".myform").serialize();
  203.         $.post("/family-connection/main/resume/index", { serialized_form: form_data, Naviance_AJAX_Request: 'add_to_resume', editid: Id },
  204.             function (data) {
  205.                 if (data.success == 1) {
  206.                     //alert(data.message);
  207.                     loadResume();              
  208.                  }
  209.                  processChange();
  210.             }, "json");
  211.      
  212.      $(".add-entry").slideUp("slow");
  213.      return false;        
  214.     }  
  215.  
  216.     function deleteComponent(Id) {
  217.         var answer = confirm("Are you sure you want to remove this entry from your resume?");
  218.         if (answer) {
  219.             $.post("/family-connection/main/resume/index", { delete_component: 1, deleteid: Id, Naviance_AJAX_Request: 'delete_component'},
  220.                 function(data) {
  221.                     if (data.success == 1) {
  222.                         //alert(data.message);
  223.                         loadResume(data.nocomponents);
  224.                     }
  225.                     processChange();
  226.             }, "json");    
  227.         }
  228.         else return false;
  229.     }
  230.    
  231.     function loadResume(NoComp) {
  232.         $("#build-wrap").load("/family-connection/main/resume/index?Naviance_AJAX_Request=1&load_resume=1");
  233.         $(".default-wrap").html("<span></span>");
  234.         if (NoComp) {
  235.             $(".default-wrap").load("/family-connection/main/resume/index?Naviance_AJAX_Request=1&get_has_not_started=1");
  236.             $(".default-wrap").slideDown("slow");
  237.         }
  238.        
  239.     }
  240.    
  241.    
  242.     function editComponent(editid,type) {
  243.        
  244.         $("#add_component_div").load("/family-connection/main/resume/index?Naviance_AJAX_Request=add_component_section&edit_component_id=" + editid + "&component_type=" + type);
  245.         $(".add-entry:visible").hide();
  246.         $(type).fadeIn("slow");  // slideUp/slideDown does not play nice with IE
  247.         $(".default-wrap").slideUp("slow");
  248.         return false;
  249.     }
  250.  
  251.     function processChange() {
  252.         showAdvancedMenu(-2);
  253.     }
  254.  
  255.     $(function() {
  256.        
  257.         $(".create-format form").hide();
  258.         $("table.resume tr:even").addClass("even");
  259.         $("#container").tabs();
  260.         $(".add-format").click(function() {
  261.             $(".create-format form").toggle();         
  262.             $(this).toggleClass("close");
  263.                 return false;
  264.             });
  265.         $(".top-button").viewable(function(event, percent) {
  266.             var visibility = parseInt( percent*100 );
  267.             if (visibility == "0") {
  268.                 $("#add-new-entry-bar").show();
  269.             } else {
  270.                 $("#add-new-entry-bar").hide();        
  271.             }
  272.         });
  273.     });
  274.    
  275. </script>
  276.             <script type="text/javascript">
  277.  
  278.    var _gaq = _gaq || [];
  279.    _gaq.push(['_setAccount', 'UA-26546827-1']);
  280.    _gaq.push(['_trackPageview']);
  281.  
  282.    (function() {
  283.      var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  284.      ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  285.      var s = document.getElementsByTagName('script')[0];
  286.     s.parentNode.insertBefore(ga, s);
  287.    })();
  288.  
  289. </script>
  290. </head>
  291. <body>
  292.     <div id="user">
  293.  
  294.          
  295.     <dl class="clearfix">
  296.         <dt>School name xxxxxxxxx</dt>
  297.         <dd class="login">Logged in as: xxxxxxxx (<a href="/family-connection/auth/logout">log out</a>)</dd>
  298.         <dd class="right"><a href="/family-connection/main/account/manage">Manage my account</a></dd>    </dl>
  299.     </div> <!--/user -->
  300.  
  301.    <div id="wrapper">
  302.  
  303.     <div id="header" class="clearfix">
  304.  
  305.         <h1>family connection</h1>
  306. <!--
  307.        <a href="/family-connection/" id="home">Home</a>-->
  308.                 <ul id="nav">
  309.  
  310.                         <li id="home-nav-button"><a href="/family-connection/">home</a></li>
  311.            
  312.            
  313.                             <li ><a href="/family-connection/colleges/">colleges</a></li>
  314.            
  315.                             <li ><a href="/family-connection/careers/">careers</a></li>
  316.            
  317.                         <li ><a href="/family-connection/main/about-me/">about me</a></li>
  318.            
  319.                         <li class="my-planner-tab "><img src="/resources-fc/images/icons/calendar-large.png" height="37" width="35" /><a href="/family-connection/success-planner/"> my planner</a></li>
  320.            
  321.         </ul>
  322.         <ul id="nav">
  323.  
  324.                         <li id="home-nav-button"><a href="/family-connection/">home</a></li>
  325.            
  326.            
  327.                             <li ><a href="/family-connection/colleges/">colleges</a></li>
  328.            
  329.                             <li ><a href="/family-connection/careers/">careers</a></li>
  330.            
  331.                         <li class="on"><a href="/family-connection/main/about-me/">about me</a></li>
  332.            
  333.                         <li class="my-planner-tab "><img src="/resources-fc/images/icons/calendar-large.png" height="37" width="35" /><a href="/family-connection/success-planner/"> my planner</a></li>
  334.            
  335.         </ul>
  336.     </div> <!-- /header -->
  337.  
  338.     <div id="content-wrapper">
  339.                             <div id="sidebar">
  340.  
  341.            
  342. <dl class="subnav">
  343.     <dt>interesting things about me:</dt>
  344.  
  345.             <dd><a href="/family-connection/main/personality-type">personality type</a></dd>        <dd>
  346.         <a href="/family-connection/learning-style/">learning style</a>
  347.         </dd>
  348.         <dd><a href="/family-connection/main/resume/">resume</a></dd>
  349.     <dd><a href="/family-connection/main/game-plan/">game plan</a></dd> <dd><a href="/family-connection/main/document/">documents</a></dd>
  350.     <dd><a href="/family-connection/main/journal/">journal</a></dd>
  351.         <dd><a href="/family-connection/main/survey/history/?t=s">survey history</a></dd>
  352. </dl>
  353.  
  354.  
  355.  
  356.  
  357. <dl class="subnav">
  358.     <dt>official things:</dt>
  359.     <dd><a href="/family-connection/main/profile/manage">profile</a></dd>
  360.     <dd><a href="/family-connection/inbox/p/1">inbox</a></dd>
  361.     <dd><a href="/family-connection/main/account/manage/">account</a></dd>
  362.     <dd><a href="/family-connection/main/test-scores/">test scores</a></dd>
  363. </dl>
  364.  
  365.  
  366.  
  367. <dl class="subnav surveys">
  368.     <dt>surveys to take:</dt>
  369.                 <dd><a href="/family-connection/main/survey/custom/?svid=27117&level=0">student brag sheet</a></dd>
  370.     </dl>
  371.  
  372. <p class="toggle-surveys">
  373. <a href="#">view all surveys</a>
  374. <a href="#" style="display: none;">view fewer surveys</a>
  375. </p>
  376. <p>
  377. <a href="/family-connection/main/survey/history/?t=s">survey history</a></p>
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.         </div> <!-- /sidebar -->
  388.  
  389.         <div id="main-content">
  390.  
  391.             <h1> resume</h1>
  392.             <!-- Sticky Header Content -->
  393.             <h2 class="intro-top"><span>Build Your Resume</span></h2>
  394.             <div class="intro-content">
  395.                 <p>        
  396.        
  397.                 Add new entries to your resume by selecting a type of entry from the menu below. If you're not sure what  
  398.                 information to provide, you can select an entry type and read the tips displayed. When printing your resume,
  399.                 you can choose which entries you want to display, so we encourage you to add as much information as possible.
  400.                 </p>
  401.             </div> <!-- /intro-content -->
  402.             <div class="intro-bottom"></div> <!-- /intro-botom -->  
  403.             <!-- End Sticky Header Content -->
  404.        
  405.             <div id="container">
  406.                 <ul id="container_tabs">
  407.  
  408.                     <li><a href="#build"><span>Build Resume Sections</span></a></li>
  409.                     <li><a href="#customize"><span>Customize Your Printable Resumes</span></a></li>
  410.                 </ul>
  411.                 <!-- Start Build Tab  -->
  412.                 <div id="build">
  413.         <p class="instructions">Use the tools below to create and edit any sections you might want to use in your resume</p><div class="new-entry clearfix">
  414.             <div class="entry-type-wrap top-button">
  415.                 <p class="add-text">add a new entry:</p>
  416.                 <ul id="entry-type">
  417.                     <li><a href="#">- Select One -</a>
  418.                         <ul>
  419.                             <li><a href="#objective">Objective</a></li>
  420.                             <li><a href="#summary">Summary</a></li>
  421.                             <li><a href="#work_experience">Work Experience</a></li>
  422.                             <li><a href="#education">Education</a></li>
  423.                             <li><a href="#volunteer_service">Volunteer Service</a></li>
  424.                             <li><a href="#extracurricular_activities">Extracurricular Activities</a></li>
  425.                             <li><a href="#awards">Awards/Certificates</a></li>
  426.                             <li><a href="#skills_academic_achievement">Skills/Academic Achievement</a></li>
  427.                             <li><a href="#music_artistic_achievement">Music/Artistic Achievement</a></li>                              
  428.                             <li><a href="#athletic_achievement">Athletic Achievement</a></li>
  429.                             <li><a href="#references">References</a></li>
  430.                             <li><a href="#leadership">Leadership</a></li>
  431.                             <li class="last"><a href="#additional_information">Additional Information</a></li>          
  432.                         </ul>
  433.                     </li>
  434.                 </ul>
  435.             </div> <!-- /entry-type-wrap -->          
  436.         </div> <!-- /new-entry -->
  437.         <div id="add_component_div" class="add-entry-wrap">
  438.         </div> <!-- /add_component_div -->
  439.        
  440.         <script type="text/javascript">loadResume();</script><div id="build-wrap">
  441.             <h2 class ="section-top">
  442.                 <span>education</span>
  443.             </h2>
  444.             <div class="section-content"><div class="build-box">
  445.             <p class="menu">
  446.                 <a title="edit" class="edit" href="#entry-type" onclick="editComponent('11989658','education');">Edit</a>
  447.                 <a title="delete" onclick="deleteComponent('11989658','education'); return false;" class="delete" href="#">Delete</a>
  448.             </p><p><strong>name of school</strong></p><p>Introductory College Course<br />someDate</p><p>&quot;name of course&quot;
  449.  
  450. This course investigates the basic concepts behind programming
  451. languages, with a strong emphasis on the techniques and benefits
  452. of functional programming along with many other topics.</p></div> <!-- end build-box -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement