{"id":16133807,"url":"https://github.com/wallarug/resources-template","last_synced_at":"2025-04-06T15:29:10.235Z","repository":{"id":72814113,"uuid":"254070664","full_name":"wallarug/resources-template","owner":"wallarug","description":"A template for the resource portal","archived":false,"fork":false,"pushed_at":"2020-04-08T11:51:17.000Z","size":300,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-12T21:34:36.396Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wallarug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-08T11:38:21.000Z","updated_at":"2020-04-08T11:51:19.000Z","dependencies_parsed_at":"2023-02-23T12:31:11.602Z","dependency_job_id":null,"html_url":"https://github.com/wallarug/resources-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wallarug%2Fresources-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wallarug%2Fresources-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wallarug%2Fresources-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wallarug%2Fresources-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wallarug","download_url":"https://codeload.github.com/wallarug/resources-template/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247502582,"owners_count":20949295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-09T22:46:00.497Z","updated_at":"2025-04-06T15:29:10.229Z","avatar_url":"https://github.com/wallarug.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# resources-template\n\nA static HTML page that is a shortcut to the most common downloads and requirements of the college (unprotected).  Adapted for public usage.\n\nUsed to help students install software.  Appears with tiles and a search menu.\n\n\n# Creating Icons\n\nAll icons must be jpg format.  All icons must be 228 x 228 pixels.  All icons must go in `img/icon/`.\n\n\n# Adding New Tiles\n\nThere are two types of tiles that can be added.  Either one that goes directly to a website (type 1) or opens a pop up window.\n\n## Type 1 - Direct\n\n1. Copy the below template and change the fields in the below list.\n- `href=\"\"` - The URL that your tile redirects to.\n- `src=\"\"` - The location and name of your image.  Put into the `img/icon` folder.  \n- `\u003ch2\u003e` - The name that appears on the tile.  Keep it short.\n- `\u003cp\u003e` - The description of the tile.  Keep it short.\n- `\u003cp\u003e` - The label to apply to your tile.\n\n**Example (Google Chrome Tile)**\n```html\n\u003cli\u003e\u003ca target=\"_blank\" href=\"https://www.google.com/chrome/\"\u003e\n    \u003cimg src=\"img/icon/chrome.jpg\" class=\"ui-li-thumb\"\u003e\n    \u003ch2\u003eGoogle Chrome\u003c/h2\u003e\n    \u003cp\u003eGoogle Chrome Browser\u003c/p\u003e\n    \u003cp class=\"ui-li-aside\"\u003eExternal\u003c/p\u003e\n\u003c/a\u003e\u003c/li\u003e\n```\n\n2. Insert it in the section of index.htm that is commented for tiles.\n\nThat's it!\n\n## Type 2 - Pop Up\n\nCopy the below template and change the fields in the below list:\n- `href=\"\"` - The Name that you give your popup box in step 3.\n- `src=\"\"` - The location and name of your image.  Put into the `img/icon` folder.  \n- `\u003ch2\u003e` - The name that appears on the tile.  Keep it short.\n- `\u003cp\u003e` - The description of the tile.  Keep it short.\n- `\u003cp\u003e` - The label to apply to your tile.\n\n\n**Example (SSL Cert Tile)**\n```html\n\u003cli\u003e\u003ca href=\"#sslcert-popup\" data-rel=\"popup\" data-position-to=\"window\" data-transition=\"pop\"\u003e\n    \u003cimg src=\"img/icon/sslcert.jpg\" class=\"ui-li-thumb\"\u003e\n    \u003ch2\u003eSSL Certificate\u003c/h2\u003e\n    \u003cp\u003e SSL Certificate for Internet \u003c/p\u003e\n    \u003cp class=\"ui-li-aside\"\u003eInternet\u003c/p\u003e\n\u003c/a\u003e\u003c/li\u003e\n```\n\n2. Insert it in the section of index.htm that is commented for tiles.\n\n3. Copy the below template and update the following fields:\n- comment - you may want to update the comment `\u003c!-- COMMENT --\u003e`\n- `id=\"\"` - The name of the popup you used in step 1.\n- `\u003ch1\u003e` - The title you want on your pop up box.\n- `\u003ch3\u003e` - The description or instruction you want on your popup box.\n- `\u003ca href=\"\"` - You can have as many buttons as you like, the example has three buttons.  Each button needs the URL updated, img src\"\" and description.\n- `\u003cp\u003e` - (Optional) Description after all the buttons\n\n**Example (SSL Cert Pop Up)**\n```html\n\u003c!-- SSL CERTIFICATE --\u003e\n\u003cdiv data-role=\"popup\" id=\"sslcert-popup\" data-overlay-theme=\"b\" data-theme=\"b\" data-dismissible=\"true\"\u003e\n    \u003cdiv data-role=\"header\" data-theme=\"a\"\u003e\n    \u003ch1\u003eSoftware Version\u003c/h1\u003e\n    \u003c/div\u003e\n    \u003cdiv role=\"main\" class=\"ui-content\"\u003e\n        \u003ch3 class=\"ui-title\"\u003ePlease select your operating system from below.\u003c/h3\u003e\n        \u003ca href=\"http://resources.maristns.catholic.edu.au/download/ssl/windows-installSSLCertificate2018.exe\" class=\"ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b\" target=\"_blank\"\u003e\u003cimg src=\"img/windows.svg\" width=\"50\"\u003e \u003cbr /\u003e Windows \u003c/a\u003e\n        \u003ca href=\"http://resources.maristns.catholic.edu.au/download/ssl/macos-installSSLCertificate2018.pkg\" class=\"ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b\" target=\"_blank\"\u003e\u003cimg src=\"img/mac.png\" width=\"50\"\u003e \u003cbr /\u003e Mac OSX \u003c/a\u003e\n        \u003ca href=\"http://resources.maristns.catholic.edu.au/download/ssl/ZscalerSHA256.crt\" class=\"ui-btn ui-corner-all ui-shadow ui-btn-inline ui-btn-b\" target=\"_blank\"\u003e\u003cimg src=\"img/icon/cert.png\" width=\"50\"\u003e \u003cbr /\u003e Cert File \u003c/a\u003e\n        \u003cp\u003e Updated: 01/01/2020 \u003c/p\u003e\n    \u003c/div\u003e\n\u003c/div\u003e\n```\n\n4. Insert the above modified code into the index.htm file that is commented for popups.\n\n5. That's it!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwallarug%2Fresources-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwallarug%2Fresources-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwallarug%2Fresources-template/lists"}