Our Meganav module requires some simple markup in order for it to function correctly.
Here is a basic example showing a single column of links:
<div>
<!-- Heading with link and toggle -->
/* global module */ | |
/* File location: dev/tools/grunt/configs/aliases.js */ | |
/* Usage: https://github.com/firstandthird/load-grunt-config#aliases */ | |
'use strict'; | |
module.exports = { | |
default: [], |
<?php | |
return array ( | |
'backend' => | |
array ( | |
'frontName' => 'admin', | |
), | |
'crypt' => | |
array ( | |
'key' => '9af38453afda96c7862c7d10eb493ba4', | |
), |
<?xml version="1.0"?> | |
<!-- | |
/** | |
* Copyright © 2016 Magento. All rights reserved. | |
* See COPYING.txt for license details. | |
*/ | |
--> | |
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> | |
<body> | |
<!-- Remove unwanted account navigation links --> |
/** | |
* drawer.js | |
*/ | |
define(['jquery', 'm2base'], function($, m2base) { | |
'use strict'; | |
var Drawer = window.M2base.Drawer = { | |
elements: { |
php bin/magento setup:install --base-url=http://mysite.dev --db-host=localhost --db-name=mysite --db-user=root --admin-firstname=Magento --admin-lastname=User [email protected] --admin-user=admin --admin-password=password123 --language=en_GB --currency=GBP --timezone=Europe/London --use-rewrites=1 --backend-frontname=admin |
{ | |
"name": "[project-name]", | |
"description": "[project-description]", | |
"version": "1.0.0" | |
} |
module.exports = function(grunt) { | |
var gulp = require('gulp'), | |
styleguide = require('sc5-styleguide'); | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
sass: { |
<ul class="messages"> | |
<li class="error-msg"> | |
<ul> | |
<li><span>Error Message</span></li> | |
</ul> | |
</li> | |
<li class="success-msg"> | |
<ul> | |
<li><span>Success Message</span></li> | |
</ul> |
<h1>Style Guide</h1> | |
<hr> | |
<h2>Display Headings</h2> | |
<h1 class="font-family--tradegothic">Display Heading 1<br> | |
<span class="sub-heading">Display Heading 1 Sub-heading</span></h1> | |
<h2 class="font-family--tradegothic">Display Heading 2<br> | |
<span class="sub-heading">Display Heading 2 Sub-heading</span></h2> |