- Planning
- Project Statement, Requirements Document
- Content Inventory and Mood Boards
- Site Map and Wireframes
- Pre-Build Test
- Building
- Design
- Development
-
- Markup layer
-
- Element layer
| <?php | |
| /** | |
| * Plugin Name: Plugin Activity Logger | |
| * Description: Logs plugin installations, activations, deactivations, updates (with from/to versions if available), and deletions. Handles both single and bulk updates. Attempts to log failed updates as well. | |
| * Version: 3.3 | |
| * Author: Needmore Designs | |
| */ | |
| if (!defined('ABSPATH')) { | |
| exit; // Exit if accessed directly. |
| <?php | |
| /* | |
| Plugin Name: Plugin Manager | |
| Description: This plugin helps manage other plugins by tracking who installed them, the installation date, and a description. | |
| Version: 1.0 | |
| Author: Needmore Designs | |
| */ | |
| // Create custom table | |
| function pm_create_table() |
| /* Variables so we can try alternates. You can use serif fonts, | |
| for example, by transposing some lines. */ | |
| body { | |
| --font-variable-width: -apple-system-ui-serif, ui-serif, Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; | |
| --font-variable-width: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
| --font-monospace: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", "Ubuntu Monospace", "Source Code Pro", "Fira Mono", "Droid Sans Mono", "Courier New", monospace; | |
| } | |
| /* General text */ | |
| body, |
| <main> | |
| <?php get_template_part( 'parts/layouts/home', 'intro' ); ?> | |
| <?php get_template_part( 'parts/layouts/home', 'slider' ); ?> | |
| <?php get_template_part( 'parts/product', 'grid' ); ?> | |
| <?php get_template_part( 'parts/layouts/home', 'outro' ); ?> | |
| <?php // or, you can just try to load them ALL, from the next template ?> | |
| <?php get_template_part('parts/content', 'layouts'); ?> |
| #!/bin/bash | |
| # move_git - A script to move a repo from bitbucket to beanstalk | |
| # Assumes you use a ~/Sites folder for these things, and are in it? | |
| # Will leave behind a tarred zipfile of the repository. | |
| # Note: Remember to create the repo in Beanstalk first! | |
| # Usage: move_git.sh repo_name |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| module.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| pkgc: grunt.file.readJSON('package.json'), | |
| // Watch files that may change and should trigger updates | |
| watch: { | |
| sass: { | |
| files: ['sass/*.{scss,sass}', 'sass/**/*.scss'], |