[
  {
    "path": ".gitignore",
    "content": "src/*.min.*\n*.min.*\n*.log\nnode_modules/\n"
  },
  {
    "path": ".npmignore",
    "content": "src/\nindex.html\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: node_js\n\nnode_js: stable\n\nafter_success:\n  - npm run build\n\ndeploy:\n  provider: npm\n  email: \"rrdelaney@outlook.com\"\n  api_key: $NPM_TOKEN\n  skip_cleanup: true\n  on:\n    branch: master\n    condition: $(npm view material-resume dist-tags.latest) != $(node -p \"require('./package.json').version\")\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2016 Ryan Delaney\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Material Resume\n\n## [Demo](https://rrdelaney.github.io/material-resume/)\n\n## Latest versions\n\n```html\n<link href=\"https://unpkg.com/material-resume@1.0.1/resume.min.css\" rel=\"stylesheet\">\n<script src=\"https://unpkg.com/material-resume@1.0.1/resume.min.js\"></script>\n```\n\n## Getting Started\n\n1. Download the [`index.html`](https://github.com/rrdelaney/material-resume/blob/gh-pages/index.html) file\n2. Open in your favorite editor\n3. Open document in chrome\n4. Start editing in the `<body>`\n5. To save:\n  - Right click\n  - `Print...`\n  - `Save as PDF`\n\nBuilding the resume is as easy as adding `ng-app=\"Resume\"` to your body\nand then using the directives listed below.\n\n## Directives\n\n### `<resume>`\n\nHolds the entire document.\n\n__Example__:\n```html\n<html>\n  <head>...</head>\n  <body ng-app=\"Resume\">\n    <resume>\n      ...\n    </resume>\n  </body>\n</html>\n```\n\n### `<resume-heading>`\n\nHeading the for the resume. Should come immediately after `<resume>`.\n\n __Options__:\n- `first-name`: Your first name\n- `last-name`: Your last name\n- `website`: Your website, optional\n- `email`: Your email, optional\n- `phone`: Your phone number, optional\n- `github`: Your github username, optional\n- `linkedin`: Your linkedin username, optional\n\n__Example__:\n```html\n<resume>\n  <resume-heading first-name=\"Joe\"\n                  last-name=\"Smith\"\n                  phone=\"555-555-555\">\n  </resume-heading>\n</resume>\n```\n\n### `<resume-body>`\n\nContains the body of the resume.\n\n__Example__:\n```html\n<resume>\n  <resume-body>\n    ...\n  </resume-body>\n</resume>\n```\n\n### `<resume-column>`\n\nAdds a column to the resume. The width of the column must also be specified.\nThere can be more than one column side-by-side, but the flex values\nshould add up to 100.\n\n__Options__:\n- `flex`: The width of the column out of 100\n\n__Example__:\n```html\n<resume>\n  <resume-heading></resume-heading>\n  <resume-body>\n    <resume-column flex=\"30\">\n      <!-- This will be 30% of the page -->\n    </resume-column>\n    <resume-column flex=\"70\">\n      <!-- This will be 30% of the page -->\n    </resume-column>\n  </resume-body>\n</resume>\n```\n\n### `<sidebar-category>`\n\nA small category window meant to hold a couple of points. Useful for things\nin a sidebar, like coursework. Meant for small bullets. Child items should use\nthe `<p>` tag.\n\n__Options__:\n- `name`: The name of the category. Will appear in bold font above the items\n\n__Example__:\n```html\n<resume-body>\n  <resume-column flex=\"30\">\n    <sidebar-category name=\"Facts\">\n      <p>I am awesome</p>\n      <p>I am cool</p>\n    </sidebar-category>\n  </resume-column>\n</resume-body>\n```\n\n### `<category>`\n\nA larger category for the main section of the resume. Meant for multiple items\nto be be elaborated upon. Child items should be the `<category-item>` tag. An\nexample would be to create a category called \"Jobs\" and then each item would\nbe a previous job that would then be expanded upon.\n\n__Options__:\n- `name`: The name of the category\n\n__Example__:\n```html\n<resume-body>\n  <resume-column flex=\"70\">\n    <category name=\"Jobs\">\n      <category-item title=\"My First Job\">...</category-item>\n      <category-item title=\"My Second Job\">...</category-item>\n      <category-item title=\"My Third Job\">...</category-item>    \n    </category>\n  </resume-column>\n</resume-body>\n```\n\n### `<category-item>`\n\nA point to elaborate upon in a category. E.x. a job in the \"Jobs\" category.\nChild items should use the `<li>` tag.\n\n__Options__:\n- `title`: The title of the item. Will be displayed in bold under the category\n- `subtitle`: Extra info, next to the title, optional\n\n__Example__:\n```html\n<category name=\"Jobs\">\n  <category-item title=\"Marketing Intern\" subtitle=\"Contoso (Summer 2014)\">\n    <li>Created content for marketing</li>\n    <li>Worked with others, sometimes successfully</li>\n  </category-item>\n  <category-item title=\"Cashier\" subtitle=\"Micheal's (November 2014 - May 2015)\">\n    <li>Checked items out</li>\n    <li>Did inventory</li>\n  </category-item>   \n</category>\n```\n\n## Updating\n\nTo update this resume to a newer version, copy the `<link>` and `<script>`\ntags you see at the top of this file and replace lines 13 and 14 with them.\n"
  },
  {
    "path": "index.html",
    "content": "<!DOCTYPE html><html><head><meta charset=\"UTF-8\">\n<title>Resume</title>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n<link rel=\"stylesheet\" href=\"https://ajax.googleapis.com/ajax/libs/angular_material/1.1.0-rc2/angular-material.min.css\">\n<link href=\"https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css\" rel=\"stylesheet\" integrity=\"sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1\" crossorigin=\"anonymous\">\n<link href=\"https://fonts.googleapis.com/css?family=Raleway:500,200,700\" rel=\"stylesheet\">\n<script src=\"https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js\"></script>\n<script src=\"https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-animate.min.js\"></script>\n<script src=\"https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-aria.min.js\"></script>\n<script src=\"https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular-messages.min.js\"></script>\n<script src=\"https://ajax.googleapis.com/ajax/libs/angular_material/1.1.0-rc2/angular-material.min.js\"></script>\n\n<link href=\"https://unpkg.com/material-resume@1.0.1/resume.min.css\" rel=\"stylesheet\">\n<script src=\"https://unpkg.com/material-resume@1.0.1/resume.min.js\"></script>\n\n</head><body ng-app=\"Resume\" ng-cloak=\"\">\n    <resume>\n        <resume-heading first-name=\"Taylor\" last-name=\"Swift\" linkedin=\"tay-swizzy\" github=\"tswizzle\" email=\"taylor@swift.com\" phone=\"123-456-7890\">\n        </resume-heading>\n        <resume-body>\n            <resume-column flex=\"20\">\n                <sidebar-category name=\"Education\">\n                    <p>Dankmeme Polytechic Institue</p>\n                    <p>Graduating May 2016</p>\n                    <p>Computer Science</p>\n                    <p>Computer Systems Engineering</p>\n                    <p>GPA - 3.76</p>\n                </sidebar-category>\n                <sidebar-category name=\"Achievements\">\n                    <p>Penn App Finalist Spring 2016</p>\n                    <p>Hophacks 2nd Place Spring 2016</p>\n                    <p>Dankmeme Achievement Medal 2016</p>\n                    <p>Dan Abromov's Top Follower 2016</p>\n                    <p>Advanced Regents Diploma</p>\n                </sidebar-category>\n                <sidebar-category name=\"Coursework\">\n                    <p>Data Structures</p>\n                    <p>Algorithms</p>\n                    <p>Programmings Langauges</p>\n                    <p>Operating Systems</p>\n                    <p>Distributed Systems</p>\n                    <p>Discrete Math</p>\n                </sidebar-category>\n            </resume-column>\n            <resume-column flex=\"80\">\n                <category name=\"Professional Experience\">\n                    <category-item title=\"Co-Founder\" subtitle=\"Torch Studios\">\n                        <li>Co-Founded company in 2015</li>\n                        <li>Applies machine learning to customer purchase history for marketing materials</li>\n                        <li>Featured on Product Hunt, clients include two Fourtune 500 companies</li>\n                    </category-item>\n                    <category-item title=\"Software Development Intern\" subtitle=\"AirBnB (Summer 2015)\">\n                        <li>Worked in an Agile Environment on the iOS team with other interns</li>\n                        <li>Used JIRA to collaborate with developers are on stories</li>\n                        <li>Collaborated with other interns on design</li>\n                        <li>Used Objective-C to create new app features and scaled on Kubernetes</li>\n                    </category-item>\n                    <category-item title=\"Software Development Intern\" subtitle=\"Uber (Summer 2014)\">\n                        <li>Worked on the iOS application</li>\n                        <li>Added new features and fixed several bugs on the app</li>\n                        <li>Greenfield project to research a better way to call cars to your location</li>\n                    </category-item>\n                </category>\n                <category name=\"Projects\">\n                    <category-item title=\"In-It-For-The-Prizes\" subtitle=\"Penn Apps Spring 2016 (Finalist)\">\n                        <li>Such and amazing app that did a lot of things</li>\n                        <li>Integrations with Uber, Postmates, Spotify, and Office 365</li>\n                        <li>Written with Ionic Framework and hosted on Kubernetes 😎 for the cred</li>\n                    </category-item>\n                    <category-item title=\"FoodStash\" subtitle=\"Hophacks Spring 2016 (2nd Place)\">\n                        <li>Food-storage-as-a-Service app that lets people put their food in your fridge</li>\n                        <li>All storage and payment in based on the blockchain with Ethereum and Mist</li>\n                    </category-item>\n                    <category-item title=\"Turnup\" subtitle=\"github.com/tswizzle/turnup\">\n                        <li>A new programming language with a focus on developers turning up</li>\n                        <li>Implemented in Go and requires Docker 1.12 with Ceph on CoreOS</li>\n                    </category-item>\n                </category>\n                <category name=\"Skills\">\n                    <category-item title=\"Web Development\">\n                        <li><strong>Dank Memes</strong> I can find the deepest, dankest memes out there on the inerwebs</li>\n                        <li><strong>Distributed Systems</strong> I only run my apps on Kubernetes and a CoreOS cluster</li>\n                        <li><strong>Tooling</strong> I literally treat Dan Abromov's Twitter as holy gospel</li>\n                        <li><strong>Frameworks</strong> React, Redux, Reselect, Redankmeme, Revenant, Angular</li>\n                    </category-item>\n                    <category-item title=\"Technologies\">\n                        <li><strong>Experienced With</strong> Web &amp; Hybrid App Development \\ Functional Programming</li>\n                        <li><strong>Programming</strong> Javascript \\ Scala \\ Python \\ PHP \\ C \\ Java</li>\n                        <li><strong>Databases</strong> RethinkDB \\ MongoDB \\ MySQL \\ PostgreSQL \\ Redis</li>\n                    </category-item>\n                </category>\n            </resume-column>\n        </resume-body>\n    </resume>\n\n\n</body></html>\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"material-resume\",\n  \"version\": \"1.0.1\",\n  \"description\": \"A cool resume template\",\n  \"scripts\": {\n    \"build:js\": \"buble src/resume.js | uglifyjs > resume.min.js\",\n    \"build:css\": \"cssmin src/resume.css > resume.min.css\",\n    \"build\": \"npm run build:js && npm run build:css\",\n    \"test\": \"standard src/resume.js\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/rrdelaney/material-resume\"\n  },\n  \"author\": \"Ryan Delaney <rrdelaney@outlook.com>\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/rrdelaney/material-resume/issues\"\n  },\n  \"homepage\": \"https://github.com/rrdelaney/material-resume\",\n  \"devDependencies\": {\n    \"buble\": \"^0.14.0\",\n    \"cssmin\": \"^0.4.3\",\n    \"standard\": \"^8.6.0\",\n    \"uglify-js\": \"^2.7.3\"\n  },\n  \"standard\": {\n    \"global\": [\n      \"angular\"\n    ]\n  }\n}\n"
  },
  {
    "path": "src/resume.css",
    "content": "h1, h2, h3, h4, h5, h6, p, a, li, span {\n  font-family: 'Raleway', sans-serif;\n}\n\n.resume {\n  background-color: #1f1f1f;\n  min-height: 100vh;\n}\n.resume .main {\n  height: 100%;\n  width: 700px;\n  background-color: #fff;\n  padding: 0 25px;\n  margin: 0 auto;\n}\n.resume .main .header {\n  border-bottom: 2px solid #ddd;\n}\n.resume .main .header .page-title-container {\n  margin: 0 auto;\n  text-align: center;\n  padding-bottom: 10px;\n}\n.resume .main .header .page-title {\n  font-size: 48pt;\n  display: inline;\n}\n.resume .main .header .page-title-first {\n  font-weight: 400;\n}\n.resume .main .header .page-title-last {\n  font-weight: 200;\n}\n.resume .main .header .header-icons {\n  text-align: center;\n}\n.resume .main .header .header-icons .page-subhead {\n  margin: 1rem 15px;\n  display: inline;\n}\n.resume .main .header .fa {\n  padding-right: 10px;\n}\n.resume .main .indented {\n  padding-left: 40px;\n}\n.resume .main .category-row {\n  padding-bottom: 2px;\n}\n.resume .main .category-row .category {\n  margin-right: 10px;\n  padding-left: 5px;\n  padding-right: 10px;\n  border-bottom: 1px solid #ddd;\n  border-right: 1px solid #ddd;\n}\n.resume .main .category-row .category-row-title {\n  margin: 0.4rem 0;\n}\n\n.resume .main .category-row .category-title,\n.resume .main .category-row .category-subtitle {\n  display: inline;\n  margin-top: 10px;\n  margin-bottom: 5px;\n}\n\n.resume .main .category-row .category-bullets {\n  margin-top: 5px;\n}\n.resume .main .category-row p,\n.resume .main .category-row li {\n  font-size: smaller;\n}\n\nsidebar-category:last-of-type .category {\n  border-bottom: 0 !important;\n  padding-bottom: 0 !important;\n  margin-bottom: 0 !important;\n}\n\ncategory:last-of-type category-item:last-of-type .category {\n  border-bottom: 0 !important;\n  padding-bottom: 0 !important;\n  margin-bottom: 0 !important;\n}\n\na.page-subhead {\n  color: initial;\n  text-decoration: none;\n}\n"
  },
  {
    "path": "src/resume.js",
    "content": "angular.module('Resume', ['ngMaterial'])\n\n.component('resume', {\n  transclude: true,\n  template: `<div class=\"resume\">\n    <section class=\"main\" ng-transclude></section>\n  </div>`\n})\n\n.component('resumeHeading', {\n  controllerAs: 'r',\n  transclude: true,\n  bindings: {\n    firstName: '@',\n    lastName: '@',\n    website: '@',\n    phone: '@',\n    email: '@',\n    github: '@',\n    linkedin: '@'\n  },\n  template: `<div class=\"header\">\n    <div class=\"page-title-container\">\n      <h1 class=\"page-title page-title-first\">{{r.firstName}}</h1>\n      <h1 class=\"page-title page-title-last\">{{r.lastName}}</h1>\n    </div>\n    <div class=\"header-icons\">\n      <a ng-if=\"r.website\" class=\"md-subhead page-subhead\" ng-href=\"https://{{r.website}}\" target=\"_blank\">\n        <i class=\"fa fa-lg fa-code\"></i>{{r.website}}\n      </a>\n      <span ng-if=\"r.phone\" class=\"md-subhead page-subhead\">\n        <i class=\"fa fa-lg fa-phone\"></i>{{r.phone}}\n      </span>\n      <a ng-if=\"r.email\" class=\"md-subhead page-subhead\" ng-href=\"mailto:{{r.email}}\" target=\"_blank\">\n        <i class=\"fa fa-lg fa-envelope\"></i>{{r.email}}\n      </a>\n      <a ng-if=\"r.github\" class=\"md-subhead page-subhead\" ng-href=\"https://github.com/{{r.github}}\" target=\"_blank\">\n        <i class=\"fa fa-lg fa-github\"></i>{{r.github}}\n      </a>\n      <a ng-if=\"r.linkedin\" class=\"md-subhead page-subhead\" ng-href=\"https://linkedin.com/in/{{r.linkedin}}\" target=\"_blank\">\n        <i class=\"fa fa-lg fa-linkedin-square\"></i>{{r.linkedin}}\n      </a>\n    </div>\n  </div>\n  <ng-transclude></ng-transclude>`\n})\n\n.component('resumeBody', {\n  transclude: true,\n  template: `<div layout=\"row\" ng-transclude></div>`\n})\n\n.component('resumeColumn', {\n  transclude: true,\n  template: `<div ng-transclude></div>`\n})\n\n.component('sidebarCategory', {\n  controllerAs: 'r',\n  bindings: {\n    name: '@'\n  },\n  transclude: true,\n  template: `<div flex=\"\" class=\"category-row\">\n    <div class=\"category\">\n      <h5 class=\"category-row-title\">{{r.name}}</h5>\n      <ng-transclude></ng-transclude>\n    </div>\n  </div>`\n})\n\n.component('category', {\n  controllerAs: 'r',\n  bindings: {\n    name: '@'\n  },\n  transclude: true,\n  template: `<div flex=\"\" class=\"category-row\">\n    <h4 class=\"category-row-title\">{{r.name}}</h4>\n    <ng-transclude></ng-transclude>\n  </div>`\n})\n\n.component('categoryItem', {\n  controllerAs: 'r',\n  bindings: {\n    title: '@',\n    subtitle: '@'\n  },\n  transclude: true,\n  template: `<div class=\"category\">\n    <h5 class=\"category-title md-body-2\">{{r.title}}</h5>&nbsp;\n    <h5 class=\"category-subtitle md-caption\">{{r.subtitle}}</h5>\n    <ul class=\"category-bullets\" ng-transclude></ul>\n  </div>`\n})\n"
  }
]