|
|
(46 intermediate revisions by 3 users not shown) |
Line 1: |
Line 1: |
| | {{#ask: [[Program name::CATS+]] |
| | | ?Program short description |
| | | format=list |
| | | link=none |
| | | headers=hide |
| | | mainlabel=- |
| | }} |
| | |
| | |
| | |
| This is the form class for you: | | This is the form class for you: |
|
| |
|
Line 8: |
Line 18: |
| }} | | }} |
| </div> | | </div> |
| | |
| | Test |
| | |
| | '''Instructions for start page intro box w/ image''' <br> |
| | A good option for this is to use the CSS Grid. |
| | https://css-tricks.com/snippets/css/complete-guide-grid/ |
| | |
| | I've marked the necessary HTML and CSS with comments in the Codepen for reference. |
| | https://codepen.io/Nick-Sergent/pen/mdQKbaZ |
| | |
| | The gist: |
| | The client will need to add the image within the "moha-start-section" div of the Artist Start page. Keep in mind that this needs to be after the "moha-start-section-content" div. This will place the text content and image next to one another in the "moha-start-section" div. We then use CSS to set those elements in a grid structure and define column widths that make it responsive for different screens. |
| | |
| | That is this line: |
| | grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); |
| | |
| | If the client would like to adjust the breakpoint at which the text content and image break onto two lines they can change the pixel value in that line. |
| | |
| | If the client needs a more detailed explanation of what's going on, this article explains the responsive CSS. |
| | https://css-tricks.com/look-ma-no-media-queries-responsive-layouts-using-css-grid/ |
| | |
| | '''The following CSS was added to the stylesheet for this element''' |
| | <pre> |
| | /* start page intro image setup */ |
| | .moha-start-section { |
| | display: grid; |
| | grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); |
| | } |
| | |
| | .moha-start-section > p { |
| | margin-bottom: 0; |
| | } |
| | |
| | .moha-start-section .image img { |
| | object-fit: cover; |
| | max-width: 100%; |
| | max-height: 430px; |
| | padding: 0; |
| | margin: 0; |
| | float: right; |
| | } |
| | </pre> |
|
| |
|
| This is your start page intro code: | | This is your start page intro code: |
Line 17: |
Line 69: |
| As first steps we recommend | | As first steps we recommend |
| *Joining the [[Newsletter_MoHA|MoHA newsletter]] | | *Joining the [[Newsletter_MoHA|MoHA newsletter]] |
| *Signing up for [[Open_Calls|open call list]] | | *Signing up for [[Volunteer_Opportunity|open call list]] |
| *Saying hello on [[Discord]] | | *Saying hello on [[Discord]] |
| <br> | | <br> |
Line 27: |
Line 79: |
| </div> | | </div> |
| </div> | | </div> |
| <img src="https://images.pexels.com/photos/16725860/pexels-photo-16725860/free-photo-of-two-peo[…]ing-around.jpeg" alt="" role="presentation">
| | [[File:Moha-img-test crop.jpg]] |
| </div> | | </div> |
|
| |
|
| |
|
| Here is the quicklink class: | | Here is the quicklink class: |
Line 45: |
Line 96: |
| https://moha.wiki/MediaWiki:Common.js | | https://moha.wiki/MediaWiki:Common.js |
|
| |
|
| | External Redirect |
|
| |
|
| | <nowiki>{{#externalredirect: WEBSITE GOES HERE}} |
| | </nowiki> |
|
| |
|
| '''Instructions for start page intro box w/ image'''
| | To edit an external redirected page, use <nowiki>https://moha.wiki/w/index.php?title=PAGE NAME GOES HERE&action=edit</nowiki> |
| A good option for this is to use the CSS Grid.
| |
| https://css-tricks.com/snippets/css/complete-guide-grid/ | |
|
| |
|
| I've marked the necessary HTML and CSS with comments in the Codepen for reference.
| | Testing a different way to share jotforms. |
| https://codepen.io/Nick-Sergent/pen/mdQKbaZ
| |
|
| |
|
| The gist:
| | <a href="javascript:void(window.open('https://form.jotform.com/231806252064147','blank','scrollbars=yes,toolbar=no,width=700,height=500'))">Open Call - Wizard Registry</a> |
| The client will need to add the image within the "moha-start-section" div of the Artist Start page. Keep in mind that this needs to be after the "moha-start-section-content" div. This will place the text content and image next to one another in the "moha-start-section" div. We then use CSS to set those elements in a grid structure and define column widths that make it responsive for different screens.
| |
|
| |
|
| That is this line:
| | Labeled Section Transclusion |
| grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
| |
|
| |
|
| If the client would like to adjust the breakpoint at which the text content and image break onto two lines they can change the pixel value in that line.
| | <nowiki>{{#lst:articleX|chapter1}} |
| | </nowiki> |
| | {{#lst:About|Staff}} |
|
| |
|
| If the client needs a more detailed explanation of what's going on, this article explains the responsive CSS.
| | Import CSV - https://moha.wiki/Special:ImportCSV |
| https://css-tricks.com/look-ma-no-media-queries-responsive-layouts-using-css-grid/ | | # 1) Use Overwrite existing content for new pages and complete replacement of the imported events |
| | # 2) Use Overwrite only fields contained in the file can be used if you upload a single column (the CSV need to be modified then to include the title and only the columns for import) |
| | # 3) Skip - like 1) but prefers the wiki version, rather than Airtable one |
| | # 4) Probably useless in your context Append to existing content: you don't want two instances of the same event on one page. |
|
| |
|
| '''The following CSS was added to the stylesheet for this element'''
| | Batch Upload - https://moha.wiki/Special:BatchUpload |
| <pre>
| |
| .moha-start-section {
| |
| display: grid;
| |
| grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
| |
| }
| |
|
| |
|
| .moha-start-section img {
| | Embed Video - https://www.mediawiki.org/wiki/Extension:EmbedVideo |
| object-fit: cover;
| |
| max-width: 100%;
| |
| height: 100%;
| |
| padding: 0;
| |
| margin: 0;
| |
| }
| |
| </pre>
| |