This website is a glorified list of links; a collection of some of the things we've been working on lately; a little home for Chrome Security on the web :)
Are you a member of Chrome Security who has recently published a blog post? First of all: congrats!
Posts can be added to the website in Markdown format. Since we don't render full pages, you can manually copy the first paragraph of your published post to use a preview. You don't need to copy the whole content.
Add your post to our team website by:
git cloneing this repo, or use the Github web editor (hit.when signed in)- Under the
_postsdirectory you'll findtemplate.md. Save a copy of this file with a filename in the following format:YYYY-MM-DD-permalink.md, where theYYYY-MM-DDdate is the date of publication, andpermalinkis the permalink string. Or copy the most recent post and rename it. - Fill in the fields. You can delete the
excerptline, unless you want a custom excerpt. - Paste the contents of the post (preview) under the
---. This will be used to generate an excerpt for the link. - Save it! Commit it! Pull request it!
To preview your changes locally, you will need to install and run Jekyll, which requires Ruby 2.5.0 or higher. This comes with the standard fun and excitement of wrangling with modern web dev environments and their many dependencies, so this part is completely optional.
Open up the cloned directory in your command line tool of choice, and run
gem install bundler jekyll(if you don't already have Jekyll installed)bundle install(to make sure all dependencies are there)bundle exec jekyll serve- Browse to
localhost:4000to see a preview.