The document discusses important techniques for efficient design, emphasizing the balance between perception and deception. It highlights the need for designers to respect developers and collaborate to solve technical challenges. Additionally, it introduces platforms such as CodePen and Dribbble that aid frontend developers in showcasing their work.
Building E-Commerce Content Marketing Site for Fashion Industry - Drupal Camp...Chris Wu
?
Our experiences in building a e-commerce site for fashion Industry.
In this presentation, we share our experience building a fashion content marketing site with Drupal and integrating Shopify as the e-commerce platform.
This document discusses changes to Drupal 8 theme development including:
1. Adopting SMACSS and BEM coding standards for CSS organization and naming.
2. Switching from PHP templates to the Twig templating language for improved security and easier development.
3. Changes to the theme structure including new files like .info.yml and .libraries.yml and moving templates to .html.twig files.
The document discusses the technical approaches to responsive web design (RWD), highlighting its significance in providing suitable content for various devices through methods like media queries. It mentions the challenges faced in RWD development, such as screen sizes, loading speed, and content quality. Additionally, it emphasizes the importance of handling images and ensuring high-quality content for optimal user experience.
This document contains information about using Drupal presented by Chris Wu. It discusses using Drupal as a designer, programmer, and web administrator. It provides tips on using themes, modules, Views, hooks, databases, performance optimization, and command line tools like Drush.
Drupal Taiwan is a community-driven initiative aimed at promoting and supporting the use of the Drupal content management system in Traditional Chinese. The community comprises over 7,500 members who participate in monthly meetups and events like DrupalCamp Taipei, fostering interaction and collaboration among users. This document details the community's history, structure, and strategies for involvement in the global Drupal ecosystem.
24. regions[name] = Region Name
D7 Regions D6 Regions
? $page['content']: The main content of ? $content
the current page.
? $sidebar_first
? $page['sidebar_first']: Items for the first
sidebar.
? <?php if ($page[‘sidebar_first’]): ?> ? <?php if($sidebar_first): ?>
<?php print render($page[‘content’]); ?> <div id=“sidebar-first”>
<?php endif; ?> <?php print $sidebar_first; ?>
</div>
<?php endif; ?>
34. Layout with DIV
<div id=“custom-id”>
<h2> Title </h2>
<p> Body </p>
<div id=“sub-custom-id”>
<div class=“first”> <?php ?> </div>
<div class=“second”></div>
<div class=“third”></div>
</div> <!-- end of #sub-custom-id -->
</div> <!-- end of #custom-id -->