Skip to content

Instantly share code, notes, and snippets.

@SaFrMo
Last active June 21, 2017 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SaFrMo/d6dbba9286a962ed9cfc55606397c075 to your computer and use it in GitHub Desktop.
Save SaFrMo/d6dbba9286a962ed9cfc55606397c075 to your computer and use it in GitHub Desktop.
Info for 3AM

Structure

  • Front Page/News (news pulls from Home Page category on posts)
    • Campaign
    • Campaign
    • ...
  • Work Grid
    • All
      • Work Detail
      • Work Detail
      • ...
    • Content
      • Work Detail
      • ...
    • ...
  • About
    • Hero
    • Overview
    • Approach
    • Services
      • Service
      • Service
      • ...
    • Team
  • News
  • Contact

Notes

Front Page

  • Work blocks on the front page are made up of the featured image, title, entry, and tags.
  • Set a custom external link to control where clicking a block takes the user.

Work Detail

  • Columns for credits, press, etc. will be done with lists:

    <ul>
    
        <li>
            <h4>Credits</h4>
            <ul>
                <li>Directed by: <em>Luke Scott</em></li>
                <li>...</li>
            </ul>
        </li>
    
        <li>
            <h4>Press</h4>
            <ul>
                <li>Yahoo!</li>
                <li>...</li>
            </ul>
        </li>
    
        <li>
            <h4>Interviews</h4>
            <ul>
                <li>Fast Company</li>
                <li>...</li>
            </ul>
            <h4>Results</h4>
            <ul>
                <li>Generated over 2.5 million+ views.</li>
                <li>...</li>
            </ul>
        </li>
    
    </ul>
  • Tags will render as tags in the post description ("Content / Digital / " etc)

About

  • About page breadcrumb will fill with "About / " + the second half of the split title of the page. For example, the breadcrumb on Overview - Co. Overview will read About / Co. Overview. Leave blank to remove the trailing dash and just display "About".
  • Services will have their excerpt typed in the callout in the center of the page, title in the space below that, and content in the main body.
  • Use shortcode to fill in team member details: [team-member name="" title="" linkedin=""]...content...[/team-member]

Galleries

  • Galleries will set themselves up to be 1- or 2-wide based on the number of images in them on both work-detail and single-post pages. Use the normal [gallery] shortcode to insert galleries on these pages.

Quote Slideshows

Format quote slideshows as nested shortcodes:

[quote-slideshow]
   [quote source="io9"]“You don’t see stuff like this three months before a movie is released… This is required viewing.”[/quote]
   [quote source="PC Gamer"]“This is required viewing.”[/quote]
   [quote source="Movies"]“You don’t see stuff like this three months before a movie is released…”[/quote]
[/quote-slideshow]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment