Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

convivial-demo-39427: Minor changes to handle template for Basic Card. (#630) #344

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions config/install/views.view.content_topic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,59 @@ display:
multi_type: separator
separator: ', '
field_api_classes: false
view_node:
id: view_node
table: node
field: view_node
relationship: none
group_type: group
admin_label: ''
entity_type: node
plugin_id: entity_link
label: ''
exclude: false
alter:
alter_text: false
text: ''
make_link: false
path: ''
absolute: false
external: false
replace_spaces: false
path_case: none
trim_whitespace: false
alt: ''
rel: ''
link_class: ''
prefix: ''
suffix: ''
target: ''
nl2br: false
max_length: 0
word_boundary: true
ellipsis: true
more_link: false
more_link_text: ''
more_link_path: ''
strip_tags: false
trim: false
preserve_tags: ''
html: false
element_type: ''
element_class: ''
element_label_type: ''
element_label_class: ''
element_label_colon: false
element_wrapper_type: ''
element_wrapper_class: ''
element_default_classes: true
empty: ''
hide_empty: false
empty_zero: false
hide_alter_empty: true
text: view
output_url_as_text: true
absolute: false
pager:
type: mini
options:
Expand Down Expand Up @@ -535,6 +588,9 @@ display:
field_published:
alias: date
raw_output: false
view_node:
alias: link
raw_output: false
display_description: ''
display_extenders: { }
path: data/articles-topic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,9 @@
{{~{ type }~}}
</div>
{{/if}}
{{#if date}}
<div class="stack__date">
{{~{ date }~}}
</div>
{{/if}}
{{#if link}}
<h3 class="stack__title">
<a href="{{~{ link }~}}">{{~{ title }~}}</a>
<a href={{{ link }}}>{{{ title }}}</a>
</h3>
{{else}}
<h3 class="stack__title">
Expand All @@ -29,6 +24,11 @@
{{~{ body }~}}
</div>
{{/if}}
{{#if date}}
<div class="stack__date">
{{~{ date }~}}
</div>
{{/if}}
</div>
</div>
</div>
Expand Down
Loading