Style Guide

This is a style guide for NicLake.me.

Basic Text Things

Here is some standard text.

This is some emphasized text.

Here is some bold text.

Here is some bolded & emphasized text.

Here is some text with a footnote1.

Here is a large paragraph. Bacon ipsum dolor amet rump chicken venison, shankle kielbasa ball tip ham hock tri-tip. Burgdoggen tenderloin shankle sausage ham hock spare ribs. Meatball tenderloin picanha cow salami tongue andouille capicola corned beef boudin. Andouille pork tail jerky pancetta, ribeye ground round corned beef doner sirloin short ribs. Chicken strip steak bacon ball tip. Leberkas tongue kielbasa doner ground round alcatra. Prosciutto pork belly shankle tri-tip buffalo beef ribs turducken burgdoggen pancetta drumstick.

Here is another large paragraph. Bacon ipsum dolor amet corned beef drumstick pork loin spare ribs tenderloin pig t-bone picanha short loin meatball pork jowl bacon cupim chuck. Jowl hamburger pastrami bresaola sausage. Beef shank brisket flank porchetta, spare ribs pork loin corned beef tail pig tongue. Pork chop spare ribs corned beef, short loin picanha meatball porchetta prosciutto filet mignon pork belly swine pastrami. Chuck flank meatloaf chicken alcatra fatback turkey cupim bacon cow salami meatball filet mignon corned beef burgdoggen. Prosciutto shank pancetta pork sirloin ground round corned beef biltong frankfurter beef ribs brisket salami bacon. Shankle pastrami chuck prosciutto spare ribs.

This is an example of a H1 header.

This is an example of a H2 header.

This is an example of a H3 header.

This is an example of a H4 header.

This is an example of a H5 header.
This is an example of a H6 header.
  • Example of an unordered list.
  • Another line.
  1. Example of an ordered list.
  2. Another line.

Here is an example link, and here is an example link w/ organized links.

If you want to have some inline code, google.com works well.

For a code block:

class StylePass < ApplicationRecord
  belongs_to :api_client
  belongs_to :auto_renewed_from, class_name: "StylePass", optional: true

  scope :active, -> {
    where(canceled_at: nil).where(auto_renewed_at: nil).where("expiration_date >= ?", Time.current.beginning_of_day)
  }

  AUTO_RENEWED = :auto_renewed
  RENEW = "renew".freeze

  validate :presence_of_auto_renew
  validate :client_can_only_have_one_style_pass
  validate :valid_financial_transaction_request_state
  validates_presence_of :client_id
  after_create :generate_eligibility_renewal

  def self.auto_renew_candidates
    StylePass.auto_renew_first_charge_candidates.or(StylePass.auto_renew_second_charge_candidates)
  end
end

Inline quote:

Apple Watch Series 9 is powered by custom Apple silicon in the all-new S9 SiP. Apple’s most powerful watch chip yet delivers systemwide improvements and brand-new features, including a new double tap gesture and on-device Siri with the ability to access and log health data privately and securely. Apple Watch Series 9 also has a new 4-core Neural Engine that can process machine learning tasks up to twice as fast, when compared with Apple Watch Series 8. The power efficiency of the S9 SiP allows Apple Watch Series 9 to maintain all-day 18-hour battery life.

Table example:

Standard align Left Align Center Align Right Align
Sample of a standard align cell Sample of a left align cell Sample of a center align cell Sample of a right align cell

Images can be put in like this:

altText

Embedded videos can be put in like this:

Note: if you would like to have the frame span the width of the post, remove the outer two divs.

  1. Here is the content of the footnote.